pythonPackages.fsspec: init at 0.4.1
This commit is contained in:
parent
ed898bf0f4
commit
cfb84a0ee6
26
pkgs/development/python-modules/fsspec/default.nix
Normal file
26
pkgs/development/python-modules/fsspec/default.nix
Normal file
@ -0,0 +1,26 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, pythonOlder
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "fsspec";
|
||||
version = "0.4.1";
|
||||
|
||||
disabled = pythonOlder "3.5";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "0fvm1kdnnbf0pppv23mlfdqh220gcldmv72w2rdxp6ks1rcphzg3";
|
||||
};
|
||||
|
||||
# no tests
|
||||
doCheck = false;
|
||||
|
||||
meta = with lib; {
|
||||
description = "A specification that python filesystems should adhere to.";
|
||||
homepage = "https://github.com/intake/filesystem_spec";
|
||||
license = licenses.bsd3;
|
||||
};
|
||||
}
|
@ -579,6 +579,8 @@ in {
|
||||
|
||||
filemagic = callPackage ../development/python-modules/filemagic { };
|
||||
|
||||
fsspec = callPackage ../development/python-modules/fsspec { };
|
||||
|
||||
fuse = callPackage ../development/python-modules/fuse-python {
|
||||
inherit (pkgs) fuse pkgconfig;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user