2c76a4cb41
GitOrigin-RevId: c757e9bd77b16ca2e03c89bf8bc9ecb28e0c06ad
83 lines
1.4 KiB
Nix
83 lines
1.4 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, isPy27
|
|
, fetchPypi
|
|
, setuptools
|
|
, setuptools-scm
|
|
, wheel
|
|
, pytestCheckHook
|
|
, packaging
|
|
, platformdirs
|
|
, requests
|
|
, tqdm
|
|
, paramiko
|
|
, xxhash
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pooch";
|
|
version = "1.7.0";
|
|
format = "pyproject";
|
|
|
|
disabled = isPy27;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-8XShBBtkR/Du+IYPdtF/YO0vhX3A76OHp/CCKK8F2Zg=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
setuptools
|
|
setuptools-scm
|
|
wheel
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
packaging
|
|
platformdirs
|
|
requests
|
|
];
|
|
|
|
passthru = {
|
|
optional-dependencies = {
|
|
progress = [ tqdm ];
|
|
sftp = [ paramiko ];
|
|
xxhash = [ xxhash ];
|
|
};
|
|
};
|
|
preCheck = ''
|
|
export HOME=$TMPDIR
|
|
'';
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
];
|
|
|
|
# tries to touch network
|
|
disabledTests = [
|
|
"check_availability"
|
|
"decompress"
|
|
"downloader"
|
|
"extractprocessor_fails"
|
|
"integration"
|
|
"pooch_corrupted"
|
|
"pooch_custom_url"
|
|
"pooch_download"
|
|
"pooch_logging_level"
|
|
"pooch_update"
|
|
"processor"
|
|
"test_fetch"
|
|
"test_load_registry_from_doi"
|
|
"test_retrieve"
|
|
"test_stream_download"
|
|
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "A friend to fetch your data files.";
|
|
homepage = "https://github.com/fatiando/pooch";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ GuillaumeDesforges ];
|
|
};
|
|
|
|
}
|