mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-17 02:14:08 +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.
55 lines
1.1 KiB
Nix
55 lines
1.1 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, isPy27
|
|
, fetchPypi
|
|
, setuptools-scm
|
|
, pytestCheckHook
|
|
, packaging
|
|
, appdirs
|
|
, requests
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pooch";
|
|
version = "1.6.0";
|
|
format = "pyproject";
|
|
disabled = isPy27;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-V9IOxLEN1pTSsFu2S8axCcboWmwUBXlM6H7Ys0GrP0Q=";
|
|
};
|
|
|
|
nativeBuildInputs = [ setuptools-scm ];
|
|
|
|
propagatedBuildInputs = [ packaging appdirs requests ];
|
|
|
|
preCheck = "HOME=$TMPDIR";
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
# tries to touch network
|
|
disabledTests = [
|
|
"pooch_custom_url"
|
|
"pooch_download"
|
|
"pooch_logging_level"
|
|
"pooch_update"
|
|
"pooch_corrupted"
|
|
"check_availability"
|
|
"downloader"
|
|
"test_retrieve"
|
|
"test_stream_download"
|
|
"test_fetch"
|
|
"decompress"
|
|
"extractprocessor_fails"
|
|
"processor"
|
|
"integration"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "A friend to fetch your data files.";
|
|
homepage = "https://github.com/fatiando/pooch";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ GuillaumeDesforges ];
|
|
};
|
|
|
|
}
|