Merge pull request #142475 from fabaff/bump-gcsfs

conduit-nginx
Sandro 2021-10-21 21:35:53 +02:00 committed by GitHub
commit 68baba39c7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 13 additions and 8 deletions

View File

@ -14,14 +14,14 @@
buildPythonPackage rec {
pname = "fsspec";
version = "2021.10.0";
version = "2021.10.1";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "intake";
repo = "filesystem_spec";
rev = version;
sha256 = "sha256-zvOSenK63jFC9vMLsuZT8P9NCXGdkYAB5AxvptROKes=";
sha256 = "sha256-LgrOHBXKs2bEgtgrdHb1OEhOeQ5Rbgr6X5YtgiqiCH0=";
};
propagatedBuildInputs = [

View File

@ -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 ];
};
}

View File

@ -8,11 +8,11 @@
buildPythonPackage rec {
pname = "s3fs";
version = "2021.10.0";
version = "2021.10.1";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-mSdMmP5b6pu954GQxBrb0bEghyLLKtSGd6aPhHPwOV0=";
sha256 = "sha256-STriUFPlJiVSokep8cOiyPvNIPWQf85jp0kSa6WP4F4=";
};
buildInputs = [