biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / bottleneck / default.nix
blob18aa852cd73b3ee6687dd629f93a7cb6a94607a7
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   numpy,
6   pytestCheckHook,
7   python,
8   pythonOlder,
9 }:
11 buildPythonPackage rec {
12   pname = "bottleneck";
13   version = "1.4.0";
14   format = "setuptools";
16   disabled = pythonOlder "3.7";
18   src = fetchPypi {
19     inherit pname version;
20     hash = "sha256-vrNt9Rm4cJ59NXwMljmwO4hcpjVbv15TdSxoXeUWBbg=";
21   };
23   propagatedBuildInputs = [ numpy ];
25   nativeCheckInputs = [ pytestCheckHook ];
27   pytestFlagsArray = [ "$out/${python.sitePackages}" ];
29   disabledTests = [ "test_make_c_files" ];
31   pythonImportsCheck = [ "bottleneck" ];
33   meta = with lib; {
34     description = "Fast NumPy array functions";
35     homepage = "https://github.com/pydata/bottleneck";
36     license = licenses.bsd2;
37     maintainers = [ ];
38   };