nixpkgs/pkgs/development/python-modules/bottleneck/default.nix
2022-07-03 13:44:46 +00:00

50 lines
810 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, numpy
, pytestCheckHook
, python
, pythonOlder
}:
buildPythonPackage rec {
pname = "bottleneck";
version = "1.3.5";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
pname = "Bottleneck";
inherit version;
hash = "sha256-LA0nr+RTUfb0IYkzYmIYBPp96hT+KaeOqlLUMj9kbec=";
};
propagatedBuildInputs = [
numpy
];
checkInputs = [
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; [ ];
};
}