nixpkgs-suyu/pkgs/development/python-modules/gcsfs/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

73 lines
1.2 KiB
Nix
Raw Normal View History

{ lib
, buildPythonPackage
, fetchFromGitHub
, pytestCheckHook
, pythonOlder
, google-auth
, google-auth-oauthlib
, google-cloud-storage
, requests
, decorator
, fsspec
, ujson
, aiohttp
, crcmod
, pytest-vcr
, vcrpy
}:
buildPythonPackage rec {
pname = "gcsfs";
version = "2022.5.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
2022-01-05 15:57:25 +01:00
owner = "fsspec";
repo = pname;
rev = version;
hash = "sha256-gIkK1VSg1h04+MQBoxFtXIdn80faJlgQ9ayqV5p0RMU=";
};
propagatedBuildInputs = [
aiohttp
crcmod
decorator
fsspec
google-auth
google-auth-oauthlib
google-cloud-storage
requests
ujson
];
checkInputs = [
pytest-vcr
pytestCheckHook
vcrpy
];
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"
];
meta = with lib; {
description = "Convenient Filesystem interface over GCS";
2022-01-05 15:57:25 +01:00
homepage = "https://github.com/fsspec/gcsfs";
license = licenses.bsd3;
maintainers = with maintainers; [ nbren12 ];
};
}