pythonPackages.fsspec: init at 0.4.1

This commit is contained in:
Wael M. Nasreddine 2019-08-08 17:46:01 -07:00
parent ed898bf0f4
commit cfb84a0ee6
No known key found for this signature in database
GPG key ID: FD437548E0BF0F5F
2 changed files with 28 additions and 0 deletions

View 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;
};
}

View file

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