mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
python3Packages.gcsfs: 2021.10.1 -> 2022.01.0
This commit is contained in:
parent
8713d02555
commit
d0e42fc00f
@ -18,15 +18,16 @@
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "gcsfs";
|
||||
version = "2021.10.1";
|
||||
version = "2022.01.0";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.6";
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "fsspec";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "sha256-cpV+HKE39Yct1yu5xW9HZftx2Wy9ydFL2YLvPD3YM2M=";
|
||||
hash = "sha256-wNeK1GdjK9GKaaECcFeBLjFf/h3MbLI5e4MX0UNoTqE=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
@ -47,11 +48,15 @@ buildPythonPackage rec {
|
||||
vcrpy
|
||||
];
|
||||
|
||||
disabledTests = [
|
||||
# Tests wants to communicate with the Link-local address
|
||||
"test_GoogleCredentials_None"
|
||||
disabledTestPaths = [
|
||||
# Tests require a running Docker instance
|
||||
"gcsfs/tests/test_core.py"
|
||||
"gcsfs/tests/test_mapping.py"
|
||||
"gcsfs/tests/test_retry.py"
|
||||
];
|
||||
|
||||
pytestFlagsArray = [ "-x" ];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"gcsfs"
|
||||
];
|
||||
|
Loading…
Reference in New Issue
Block a user