2019-08-09 01:46:01 +01:00
|
|
|
|
{ lib
|
|
|
|
|
, buildPythonPackage
|
2019-12-29 22:52:40 +00:00
|
|
|
|
, fetchFromGitHub
|
2019-08-09 01:46:01 +01:00
|
|
|
|
, pythonOlder
|
2020-06-20 06:31:37 +01:00
|
|
|
|
, pytestCheckHook
|
|
|
|
|
, numpy
|
2020-09-27 11:01:11 +01:00
|
|
|
|
, stdenv
|
2019-08-09 01:46:01 +01:00
|
|
|
|
}:
|
|
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
|
pname = "fsspec";
|
2020-09-27 11:01:11 +01:00
|
|
|
|
version = "0.8.3";
|
2019-08-09 01:46:01 +01:00
|
|
|
|
disabled = pythonOlder "3.5";
|
|
|
|
|
|
2019-12-29 22:52:40 +00:00
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
|
owner = "intake";
|
|
|
|
|
repo = "filesystem_spec";
|
|
|
|
|
rev = version;
|
2020-09-27 11:01:11 +01:00
|
|
|
|
sha256 = "0mfy0wxjfwwnp5q2afhhfbampf0fk71wsv512pi9yvrkzzfi1hga";
|
2019-08-09 01:46:01 +01:00
|
|
|
|
};
|
|
|
|
|
|
2019-12-29 22:52:40 +00:00
|
|
|
|
checkInputs = [
|
2020-06-20 06:31:37 +01:00
|
|
|
|
pytestCheckHook
|
|
|
|
|
numpy
|
2019-12-29 22:52:40 +00:00
|
|
|
|
];
|
|
|
|
|
|
2020-06-20 06:31:37 +01:00
|
|
|
|
disabledTests = [
|
|
|
|
|
# Test assumes user name is part of $HOME
|
|
|
|
|
# AssertionError: assert 'nixbld' in '/homeless-shelter/foo/bar'
|
|
|
|
|
"test_strip_protocol_expanduser"
|
2020-10-03 19:11:23 +01:00
|
|
|
|
# flaky: works locally but fails on hydra
|
|
|
|
|
# as it uses the install dir for tests instead of a temp dir
|
|
|
|
|
# resolved in https://github.com/intake/filesystem_spec/issues/432 and
|
|
|
|
|
# can be enabled again from version 0.8.4
|
|
|
|
|
"test_pathobject"
|
2020-09-29 12:56:46 +01:00
|
|
|
|
] ++ lib.optionals (stdenv.isDarwin) [
|
2020-09-30 15:45:31 +01:00
|
|
|
|
# works locally on APFS, fails on hydra with AssertionError comparing timestamps
|
|
|
|
|
# darwin hydra builder uses HFS+ and has only one second timestamp resolution
|
|
|
|
|
# this two tests however, assume nanosecond resolution
|
|
|
|
|
"test_modified"
|
|
|
|
|
"test_touch"
|
2020-06-20 06:31:37 +01:00
|
|
|
|
];
|
2019-08-09 01:46:01 +01:00
|
|
|
|
|
|
|
|
|
meta = with lib; {
|
2019-12-29 22:52:40 +00:00
|
|
|
|
description = "A specification that python filesystems should adhere to";
|
2020-04-01 02:11:51 +01:00
|
|
|
|
homepage = "https://github.com/intake/filesystem_spec";
|
2019-08-09 01:46:01 +01:00
|
|
|
|
license = licenses.bsd3;
|
2019-12-29 22:52:40 +00:00
|
|
|
|
maintainers = [ maintainers.costrouc ];
|
2019-08-09 01:46:01 +01:00
|
|
|
|
};
|
|
|
|
|
}
|