depot/third_party/nixpkgs/pkgs/development/python-modules/bottleneck/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

40 lines
795 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
numpy,
pytestCheckHook,
python,
pythonOlder,
}:
buildPythonPackage rec {
pname = "bottleneck";
version = "1.3.8";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
pname = "Bottleneck";
inherit version;
hash = "sha256-Z4DYlpabp/U8iZW6kMh8VIvrPbQ13JDGC5oQ7Rq02Gg=";
};
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; [ ];
};
}