nixpkgs/pkgs/development/python-modules/bottleneck/default.nix
2023-03-15 01:01:41 +00:00

50 lines
816 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, numpy
, pytestCheckHook
, python
, pythonOlder
}:
buildPythonPackage rec {
pname = "bottleneck";
version = "1.3.7";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
pname = "Bottleneck";
inherit version;
hash = "sha256-4UZ+NzrUado0DtD/KDIU1lMcwIv9yiCDNho6pkcGgfg=";
};
propagatedBuildInputs = [
numpy
];
nativeCheckInputs = [
pytestCheckHook
];
pytestFlagsArray = [
"$out/${python.sitePackages}"
];
disabledTests = [
"test_make_c_files"
];
pythonImportsCheck = [
"bottleneck"
];
meta = with lib; {
description = "Fast NumPy array functions";
homepage = "https://github.com/pydata/bottleneck";
license = licenses.bsd2;
maintainers = with maintainers; [ ];
};
}