mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-30 09:33:41 +00:00
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
160 lines
2.6 KiB
Nix
160 lines
2.6 KiB
Nix
{ lib
|
||
, stdenv
|
||
, aiohttp
|
||
, buildPythonPackage
|
||
, fetchFromGitHub
|
||
, numpy
|
||
, paramiko
|
||
, pytest-asyncio
|
||
, pytest-mock
|
||
, pytest-vcr
|
||
, pytestCheckHook
|
||
, pythonOlder
|
||
, requests
|
||
, smbprotocol
|
||
, tqdm
|
||
|
||
# optionals
|
||
, adlfs
|
||
, dask
|
||
, distributed
|
||
, dropbox
|
||
, fusepy
|
||
, gcsfs
|
||
, libarchive-c
|
||
, ocifs
|
||
, panel
|
||
, pyarrow
|
||
, pygit2
|
||
, s3fs
|
||
}:
|
||
|
||
buildPythonPackage rec {
|
||
pname = "fsspec";
|
||
version = "2022.10.0";
|
||
format = "setuptools";
|
||
|
||
disabled = pythonOlder "3.7";
|
||
|
||
src = fetchFromGitHub {
|
||
owner = "fsspec";
|
||
repo = "filesystem_spec";
|
||
rev = version;
|
||
hash = "sha256-+lPt/zqI3Mkt+QRNXq+Dxm3h/ryZJsfrmayVi/BTtbg=";
|
||
};
|
||
|
||
propagatedBuildInputs = [
|
||
aiohttp
|
||
paramiko
|
||
requests
|
||
smbprotocol
|
||
tqdm
|
||
];
|
||
|
||
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
|
||
];
|
||
};
|
||
|
||
nativeCheckInputs = [
|
||
numpy
|
||
pytest-asyncio
|
||
pytest-mock
|
||
pytest-vcr
|
||
pytestCheckHook
|
||
];
|
||
|
||
__darwinAllowLocalNetworking = true;
|
||
|
||
disabledTests = [
|
||
# Test assumes user name is part of $HOME
|
||
# AssertionError: assert 'nixbld' in '/homeless-shelter/foo/bar'
|
||
"test_strip_protocol_expanduser"
|
||
# test accesses this remote ftp server:
|
||
# https://ftp.fau.de/debian-cd/current/amd64/log/success
|
||
"test_find"
|
||
] ++ 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"
|
||
];
|
||
|
||
pythonImportsCheck = [
|
||
"fsspec"
|
||
];
|
||
|
||
meta = with lib; {
|
||
description = "A specification that Python filesystems should adhere to";
|
||
homepage = "https://github.com/fsspec/filesystem_spec";
|
||
changelog = "https://github.com/fsspec/filesystem_spec/raw/${version}/docs/source/changelog.rst";
|
||
license = licenses.bsd3;
|
||
maintainers = with maintainers; [ costrouc ];
|
||
};
|
||
}
|