Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.09 26 lines 508 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, pythonOlder 5}: 6 7buildPythonPackage rec { 8 pname = "fsspec"; 9 version = "0.4.1"; 10 11 disabled = pythonOlder "3.5"; 12 13 src = fetchPypi { 14 inherit pname version; 15 sha256 = "0fvm1kdnnbf0pppv23mlfdqh220gcldmv72w2rdxp6ks1rcphzg3"; 16 }; 17 18 # no tests 19 doCheck = false; 20 21 meta = with lib; { 22 description = "A specification that python filesystems should adhere to."; 23 homepage = "https://github.com/intake/filesystem_spec"; 24 license = licenses.bsd3; 25 }; 26}