summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFabian Affolter <fabian@affolter-engineering.ch>2025-03-23 10:03:53 +0100
committerGitHub <noreply@github.com>2025-03-23 10:03:53 +0100
commit9284ab2f27a0e97edbd342d6add8a9fac468afb5 (patch)
treeca8733f68828baf4d5c2b75a456d98d798f75276
parentpython312Packages.google-cloud-access-context-manager: 0.2.1 -> 0.2.2 (#392284) (diff)
parentpython312Packages.snakemake-storage-plugin-s3: add changelog to meta (diff)
downloadnixpkgs-9284ab2f27a0e97edbd342d6add8a9fac468afb5.tar.gz
python312Packages.snakemake-storage-plugin-s3: 0.2.13 -> 0.3.1 (#392282)
-rw-r--r--pkgs/development/python-modules/snakemake-storage-plugin-s3/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/snakemake-storage-plugin-s3/default.nix b/pkgs/development/python-modules/snakemake-storage-plugin-s3/default.nix
index d0141a7ecc5f..7b78e60fec07 100644
--- a/pkgs/development/python-modules/snakemake-storage-plugin-s3/default.nix
+++ b/pkgs/development/python-modules/snakemake-storage-plugin-s3/default.nix
@@ -13,14 +13,14 @@
buildPythonPackage rec {
pname = "snakemake-storage-plugin-s3";
- version = "0.2.13";
+ version = "0.3.1";
pyproject = true;
src = fetchFromGitHub {
owner = "snakemake";
- repo = pname;
+ repo = "snakemake-storage-plugin-s3";
tag = "v${version}";
- hash = "sha256-tH4KLswRPberlaBlRCEJSPmUfkcwVkB9YbD/3LYJx0s=";
+ hash = "sha256-WbGlXu6/7e9U2GfVd4IF86bRfulNxjP1Tw5pVHpEj/g=";
};
build-system = [ poetry-core ];
@@ -40,6 +40,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Snakemake storage plugin for S3 API storage (AWS S3, MinIO, etc.)";
homepage = "https://github.com/snakemake/snakemake-storage-plugin-s3";
+ changelog = "https://github.com/snakemake/snakemake-storage-plugin-s3/releases/tag/${src.tag}";
license = licenses.mit;
maintainers = with maintainers; [ veprbl ];
};