2020-04-24 23:36:52 +00:00
|
|
|
|
{ lib
|
2021-06-28 23:13:55 +00:00
|
|
|
|
, stdenv
|
2020-04-24 23:36:52 +00:00
|
|
|
|
, buildPythonPackage
|
|
|
|
|
, fetchFromGitHub
|
|
|
|
|
, pythonOlder
|
2020-06-15 15:56:04 +00:00
|
|
|
|
, pytestCheckHook
|
|
|
|
|
, numpy
|
2021-04-25 03:57:28 +00:00
|
|
|
|
, aiohttp
|
|
|
|
|
, pytest-vcr
|
|
|
|
|
, requests
|
2021-06-28 23:13:55 +00:00
|
|
|
|
, paramiko
|
|
|
|
|
, smbprotocol
|
2020-04-24 23:36:52 +00:00
|
|
|
|
}:
|
|
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
|
pname = "fsspec";
|
2021-10-28 06:52:43 +00:00
|
|
|
|
version = "2021.10.1";
|
2021-06-28 23:13:55 +00:00
|
|
|
|
disabled = pythonOlder "3.6";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
|
owner = "intake";
|
|
|
|
|
repo = "filesystem_spec";
|
|
|
|
|
rev = version;
|
2021-10-28 06:52:43 +00:00
|
|
|
|
sha256 = "sha256-LgrOHBXKs2bEgtgrdHb1OEhOeQ5Rbgr6X5YtgiqiCH0=";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
};
|
|
|
|
|
|
2021-06-28 23:13:55 +00:00
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
|
aiohttp
|
|
|
|
|
paramiko
|
|
|
|
|
requests
|
|
|
|
|
smbprotocol
|
|
|
|
|
];
|
2021-04-25 03:57:28 +00:00
|
|
|
|
|
2021-06-28 23:13:55 +00:00
|
|
|
|
checkInputs = [
|
|
|
|
|
numpy
|
|
|
|
|
pytest-vcr
|
|
|
|
|
pytestCheckHook
|
|
|
|
|
];
|
2021-04-25 03:57:28 +00:00
|
|
|
|
|
2021-06-28 23:13:55 +00:00
|
|
|
|
__darwinAllowLocalNetworking = true;
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
2020-06-15 15:56:04 +00:00
|
|
|
|
disabledTests = [
|
|
|
|
|
# Test assumes user name is part of $HOME
|
|
|
|
|
# AssertionError: assert 'nixbld' in '/homeless-shelter/foo/bar'
|
|
|
|
|
"test_strip_protocol_expanduser"
|
2021-04-25 03:57:28 +00:00
|
|
|
|
# test accesses this remote ftp server:
|
|
|
|
|
# https://ftp.fau.de/debian-cd/current/amd64/log/success
|
|
|
|
|
"test_find"
|
2020-10-07 09:15:18 +00:00
|
|
|
|
] ++ lib.optionals (stdenv.isDarwin) [
|
|
|
|
|
# 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-15 15:56:04 +00:00
|
|
|
|
];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
2021-06-28 23:13:55 +00:00
|
|
|
|
pythonImportsCheck = [ "fsspec" ];
|
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
|
meta = with lib; {
|
|
|
|
|
homepage = "https://github.com/intake/filesystem_spec";
|
2021-08-12 14:41:47 +00:00
|
|
|
|
description = "A specification that Python filesystems should adhere to";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
license = licenses.bsd3;
|
|
|
|
|
maintainers = [ maintainers.costrouc ];
|
|
|
|
|
};
|
|
|
|
|
}
|