mastodon: 4.3.1 -> 4.3.2 (#361487)
[NixPkgs.git] / pkgs / development / python-modules / bottleneck / default.nix
blobf89ea81255e437855dcdd725b380d587040baf4e
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   preCheck = "pushd $out";
28   postCheck = "popd";
30   disabledTests = [ "test_make_c_files" ];
32   pythonImportsCheck = [ "bottleneck" ];
34   meta = with lib; {
35     description = "Fast NumPy array functions";
36     homepage = "https://github.com/pydata/bottleneck";
37     license = licenses.bsd2;
38     maintainers = [ ];
39   };