about summary refs log tree commit diff
path: root/pkgs/development/python-modules/snakemake-storage-plugin-s3/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/snakemake-storage-plugin-s3/default.nix')
-rw-r--r--pkgs/development/python-modules/snakemake-storage-plugin-s3/default.nix35
1 files changed, 16 insertions, 19 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 9f194eb253570..bd0e8f6a59515 100644
--- a/pkgs/development/python-modules/snakemake-storage-plugin-s3/default.nix
+++ b/pkgs/development/python-modules/snakemake-storage-plugin-s3/default.nix
@@ -1,25 +1,26 @@
-{ lib
-, buildPythonPackage
-, fetchFromGitHub
-, boto3
-, botocore
-, poetry-core
-, snakemake
-, snakemake-interface-storage-plugins
-, snakemake-interface-common
-, urllib3
+{
+  lib,
+  buildPythonPackage,
+  fetchFromGitHub,
+  boto3,
+  botocore,
+  poetry-core,
+  snakemake,
+  snakemake-interface-storage-plugins,
+  snakemake-interface-common,
+  urllib3,
 }:
 
 buildPythonPackage rec {
   pname = "snakemake-storage-plugin-s3";
-  version = "0.2.10";
+  version = "0.2.11";
   format = "pyproject";
 
   src = fetchFromGitHub {
     owner = "snakemake";
     repo = pname;
     rev = "refs/tags/v${version}";
-    hash = "sha256-k21DRQdSUFkdwNb7MZJmClhIg+pdSc7H6FkDrbf4DT8=";
+    hash = "sha256-pAMrWJe4+PWHglZ/C83Af+uHBg9wupfSlH4W8CvO9as=";
   };
 
   postPatch = ''
@@ -27,9 +28,7 @@ buildPythonPackage rec {
       --replace ">=2.0,<2.2" "*"
   '';
 
-  nativeBuildInputs = [
-    poetry-core
-  ];
+  nativeBuildInputs = [ poetry-core ];
 
   propagatedBuildInputs = [
     boto3
@@ -39,14 +38,12 @@ buildPythonPackage rec {
     urllib3
   ];
 
-  nativeCheckInputs = [
-    snakemake
-  ];
+  nativeCheckInputs = [ snakemake ];
 
   pythonImportsCheck = [ "snakemake_storage_plugin_s3" ];
 
   meta = with lib; {
-    description = "A Snakemake storage plugin for S3 API storage (AWS S3, MinIO, etc.)";
+    description = "Snakemake storage plugin for S3 API storage (AWS S3, MinIO, etc.)";
     homepage = "https://github.com/snakemake/snakemake-storage-plugin-s3";
     license = licenses.mit;
     maintainers = with maintainers; [ veprbl ];