ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / bottleneck / default.nix
blob5774397e24f208c7f58946f306516bcbd26a0f08
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , numpy
5 , pytestCheckHook
6 , python
7 , pythonOlder
8 }:
10 buildPythonPackage rec {
11   pname = "bottleneck";
12   version = "1.3.5";
13   format = "setuptools";
15   disabled = pythonOlder "3.7";
17   src = fetchPypi {
18     pname = "Bottleneck";
19     inherit version;
20     hash = "sha256-LA0nr+RTUfb0IYkzYmIYBPp96hT+KaeOqlLUMj9kbec=";
21   };
23   propagatedBuildInputs = [
24     numpy
25   ];
27   checkInputs = [
28     pytestCheckHook
29   ];
31   pytestFlagsArray = [
32     "$out/${python.sitePackages}"
33   ];
35   disabledTests = [
36     "test_make_c_files"
37   ];
39   pythonImportsCheck = [
40     "bottleneck"
41   ];
43   meta = with lib; {
44     description = "Fast NumPy array functions";
45     homepage = "https://github.com/pydata/bottleneck";
46     license = licenses.bsd2;
47     maintainers = with maintainers; [ ];
48   };