about summary refs log tree commit diff
path: root/pkgs/development/python-modules/gcsfs
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2021-10-21 13:41:03 +0200
committerFabian Affolter <mail@fabian-affolter.ch>2021-10-21 13:41:03 +0200
commitfff532bab5bbe37ba2abb760063cb61800ac698a (patch)
treea19fdbd0451120fbc7577ad575e1766bd028a7e1 /pkgs/development/python-modules/gcsfs
parentdad29564c2513675a5aa9a4643dda2698fcea5a9 (diff)
python3Packages.gcsfs: 2021.10.0 -> 2021.10.1
Diffstat (limited to 'pkgs/development/python-modules/gcsfs')
-rw-r--r--pkgs/development/python-modules/gcsfs/default.nix13
1 files changed, 9 insertions, 4 deletions
diff --git a/pkgs/development/python-modules/gcsfs/default.nix b/pkgs/development/python-modules/gcsfs/default.nix
index 71945bfab4127..c6e0dc18356b6 100644
--- a/pkgs/development/python-modules/gcsfs/default.nix
+++ b/pkgs/development/python-modules/gcsfs/default.nix
@@ -5,6 +5,7 @@
 , pythonOlder
 , google-auth
 , google-auth-oauthlib
+, google-cloud-storage
 , requests
 , decorator
 , fsspec
@@ -17,14 +18,15 @@
 
 buildPythonPackage rec {
   pname = "gcsfs";
-  version = "2021.10.0";
+  version = "2021.10.1";
+
   disabled = pythonOlder "3.6";
 
   src = fetchFromGitHub {
     owner = "dask";
     repo = pname;
     rev = version;
-    sha256 = "sha256-GDVIENtNpo8cg7pplOgoDMVguZmxoUUSs860WNfhmfM=";
+    sha256 = "sha256-BME40kyxZHx9+XrMCqWYp8+q6tjeYwAw/zISMNpQxDU=";
   };
 
   propagatedBuildInputs = [
@@ -34,6 +36,7 @@ buildPythonPackage rec {
     fsspec
     google-auth
     google-auth-oauthlib
+    google-cloud-storage
     requests
     ujson
   ];
@@ -49,12 +52,14 @@ buildPythonPackage rec {
     "test_GoogleCredentials_None"
   ];
 
-  pythonImportsCheck = [ "gcsfs" ];
+  pythonImportsCheck = [
+    "gcsfs"
+  ];
 
   meta = with lib; {
     description = "Convenient Filesystem interface over GCS";
     homepage = "https://github.com/dask/gcsfs";
     license = licenses.bsd3;
-    maintainers = [ maintainers.nbren12 ];
+    maintainers = with maintainers; [ nbren12 ];
   };
 }