python3.pkgs.intake: 0.4.1 -> 0.4.4

This commit is contained in:
Robert Schütz 2019-04-09 10:03:43 +02:00
parent 6d8df017e9
commit 9d43e884cf

View File

@ -21,12 +21,12 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "intake"; pname = "intake";
version = "0.4.1"; version = "0.4.4";
disabled = isPy27; disabled = isPy27;
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "f47e53aa764eeadf6adcc667b9817b1ad32496477476da0b982d4fc0744b40ef"; sha256 = "3fc1b7c2949c9b4200ecbbfdff17da126981a1d8d95ccb7b7bcca3e3dd849d5e";
}; };
checkInputs = [ pytest ]; checkInputs = [ pytest ];
@ -47,8 +47,9 @@ buildPythonPackage rec {
]; ];
checkPhase = '' checkPhase = ''
# single test assumes python for executable name # test_filtered_compressed_cache requires calvert_uk_filter.tar.gz, which is not included in tarball
PATH=$out/bin:$PATH HOME=$(mktemp -d) pytest --ignore=intake/catalog/tests/test_default.py # test_which assumes python for executable name
PATH=$out/bin:$PATH HOME=$(mktemp -d) pytest -k "not test_filtered_compressed_cache and not test_which"
''; '';
meta = with lib; { meta = with lib; {