diff options
Diffstat (limited to 'pkgs/development/python-modules/bottleneck/default.nix')
-rw-r--r-- | pkgs/development/python-modules/bottleneck/default.nix | 45 |
1 files changed, 18 insertions, 27 deletions
diff --git a/pkgs/development/python-modules/bottleneck/default.nix b/pkgs/development/python-modules/bottleneck/default.nix index 677b4a990362..f89ea81255e4 100644 --- a/pkgs/development/python-modules/bottleneck/default.nix +++ b/pkgs/development/python-modules/bottleneck/default.nix @@ -1,49 +1,40 @@ -{ lib -, buildPythonPackage -, fetchPypi -, numpy -, pytestCheckHook -, python -, pythonOlder +{ + lib, + buildPythonPackage, + fetchPypi, + numpy, + pytestCheckHook, + python, + pythonOlder, }: buildPythonPackage rec { pname = "bottleneck"; - version = "1.3.8"; + version = "1.4.0"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchPypi { - pname = "Bottleneck"; - inherit version; - hash = "sha256-Z4DYlpabp/U8iZW6kMh8VIvrPbQ13JDGC5oQ7Rq02Gg="; + inherit pname version; + hash = "sha256-vrNt9Rm4cJ59NXwMljmwO4hcpjVbv15TdSxoXeUWBbg="; }; - propagatedBuildInputs = [ - numpy - ]; + propagatedBuildInputs = [ numpy ]; - nativeCheckInputs = [ - pytestCheckHook - ]; + nativeCheckInputs = [ pytestCheckHook ]; - pytestFlagsArray = [ - "$out/${python.sitePackages}" - ]; + preCheck = "pushd $out"; + postCheck = "popd"; - disabledTests = [ - "test_make_c_files" - ]; + disabledTests = [ "test_make_c_files" ]; - pythonImportsCheck = [ - "bottleneck" - ]; + pythonImportsCheck = [ "bottleneck" ]; meta = with lib; { description = "Fast NumPy array functions"; homepage = "https://github.com/pydata/bottleneck"; license = licenses.bsd2; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } |