2020-04-24 23:36:52 +00:00
|
|
|
|
{ lib
|
2021-06-28 23:13:55 +00:00
|
|
|
|
, stdenv
|
2022-06-26 10:26:21 +00:00
|
|
|
|
, aiohttp
|
2020-04-24 23:36:52 +00:00
|
|
|
|
, buildPythonPackage
|
|
|
|
|
, fetchFromGitHub
|
2020-06-15 15:56:04 +00:00
|
|
|
|
, numpy
|
2022-06-26 10:26:21 +00:00
|
|
|
|
, paramiko
|
2022-05-18 14:49:53 +00:00
|
|
|
|
, pytest-asyncio
|
2022-06-26 10:26:21 +00:00
|
|
|
|
, pytest-mock
|
|
|
|
|
, pytest-vcr
|
|
|
|
|
, pytestCheckHook
|
|
|
|
|
, pythonOlder
|
2021-04-25 03:57:28 +00:00
|
|
|
|
, requests
|
2021-06-28 23:13:55 +00:00
|
|
|
|
, smbprotocol
|
2022-06-26 10:26:21 +00:00
|
|
|
|
, tqdm
|
2023-01-20 10:41:00 +00:00
|
|
|
|
, adlfs
|
|
|
|
|
, dask
|
|
|
|
|
, distributed
|
|
|
|
|
, dropbox
|
|
|
|
|
, fusepy
|
|
|
|
|
, gcsfs
|
|
|
|
|
, libarchive-c
|
|
|
|
|
, ocifs
|
|
|
|
|
, panel
|
|
|
|
|
, pyarrow
|
|
|
|
|
, pygit2
|
|
|
|
|
, s3fs
|
2020-04-24 23:36:52 +00:00
|
|
|
|
}:
|
|
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
|
pname = "fsspec";
|
2023-05-24 13:37:59 +00:00
|
|
|
|
version = "2023.4.0";
|
2022-06-26 10:26:21 +00:00
|
|
|
|
format = "setuptools";
|
|
|
|
|
|
|
|
|
|
disabled = pythonOlder "3.7";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2022-11-21 17:40:18 +00:00
|
|
|
|
owner = "fsspec";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
repo = "filesystem_spec";
|
|
|
|
|
rev = version;
|
2023-05-24 13:37:59 +00:00
|
|
|
|
hash = "sha256-qkvhmXJNxA8v+kbZ6ulxJAQr7ReQpb+JkbhOUnL59KM=";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
};
|
|
|
|
|
|
2021-06-28 23:13:55 +00:00
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
|
aiohttp
|
|
|
|
|
paramiko
|
|
|
|
|
requests
|
|
|
|
|
smbprotocol
|
2022-06-26 10:26:21 +00:00
|
|
|
|
tqdm
|
2021-06-28 23:13:55 +00:00
|
|
|
|
];
|
2021-04-25 03:57:28 +00:00
|
|
|
|
|
2023-01-20 10:41:00 +00:00
|
|
|
|
passthru.optional-dependencies = {
|
|
|
|
|
entrypoints = [
|
|
|
|
|
];
|
|
|
|
|
abfs = [
|
|
|
|
|
adlfs
|
|
|
|
|
];
|
|
|
|
|
adl = [
|
|
|
|
|
adlfs
|
|
|
|
|
];
|
|
|
|
|
dask = [
|
|
|
|
|
dask
|
|
|
|
|
distributed
|
|
|
|
|
];
|
|
|
|
|
dropbox = [
|
|
|
|
|
# missing dropboxdrivefs
|
|
|
|
|
requests
|
|
|
|
|
dropbox
|
|
|
|
|
];
|
|
|
|
|
gcs = [
|
|
|
|
|
gcsfs
|
|
|
|
|
];
|
|
|
|
|
git = [
|
|
|
|
|
pygit2
|
|
|
|
|
];
|
|
|
|
|
github = [
|
|
|
|
|
requests
|
|
|
|
|
];
|
|
|
|
|
gs = [
|
|
|
|
|
gcsfs
|
|
|
|
|
];
|
|
|
|
|
hdfs = [
|
|
|
|
|
pyarrow
|
|
|
|
|
];
|
|
|
|
|
arrow = [
|
|
|
|
|
pyarrow
|
|
|
|
|
];
|
|
|
|
|
http = [
|
|
|
|
|
aiohttp
|
|
|
|
|
requests
|
|
|
|
|
];
|
|
|
|
|
sftp = [
|
|
|
|
|
paramiko
|
|
|
|
|
];
|
|
|
|
|
s3 = [
|
|
|
|
|
s3fs
|
|
|
|
|
];
|
|
|
|
|
oci = [
|
|
|
|
|
ocifs
|
|
|
|
|
];
|
|
|
|
|
smb = [
|
|
|
|
|
smbprotocol
|
|
|
|
|
];
|
|
|
|
|
ssh = [
|
|
|
|
|
paramiko
|
|
|
|
|
];
|
|
|
|
|
fuse = [
|
|
|
|
|
fusepy
|
|
|
|
|
];
|
|
|
|
|
libarchive = [
|
|
|
|
|
libarchive-c
|
|
|
|
|
];
|
|
|
|
|
gui = [
|
|
|
|
|
panel
|
|
|
|
|
];
|
|
|
|
|
tqdm = [
|
|
|
|
|
tqdm
|
|
|
|
|
];
|
|
|
|
|
};
|
|
|
|
|
|
2023-02-02 18:25:31 +00:00
|
|
|
|
nativeCheckInputs = [
|
2021-06-28 23:13:55 +00:00
|
|
|
|
numpy
|
2022-05-18 14:49:53 +00:00
|
|
|
|
pytest-asyncio
|
2022-06-26 10:26:21 +00:00
|
|
|
|
pytest-mock
|
|
|
|
|
pytest-vcr
|
2021-06-28 23:13:55 +00:00
|
|
|
|
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"
|
2023-05-24 13:37:59 +00:00
|
|
|
|
# Tests want to access S3
|
|
|
|
|
"test_urlpath_inference_errors"
|
|
|
|
|
"test_mismatch"
|
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
|
|
|
|
|
2022-06-26 10:26:21 +00:00
|
|
|
|
pythonImportsCheck = [
|
|
|
|
|
"fsspec"
|
|
|
|
|
];
|
2021-06-28 23:13:55 +00:00
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
|
meta = with lib; {
|
2021-08-12 14:41:47 +00:00
|
|
|
|
description = "A specification that Python filesystems should adhere to";
|
2022-11-21 17:40:18 +00:00
|
|
|
|
homepage = "https://github.com/fsspec/filesystem_spec";
|
2022-05-18 14:49:53 +00:00
|
|
|
|
changelog = "https://github.com/fsspec/filesystem_spec/raw/${version}/docs/source/changelog.rst";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
license = licenses.bsd3;
|
2022-06-26 10:26:21 +00:00
|
|
|
|
maintainers = with maintainers; [ costrouc ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
};
|
|
|
|
|
}
|