11 buildPythonPackage rec {
14 format = "setuptools";
16 disabled = pythonOlder "3.7";
19 inherit pname version;
20 hash = "sha256-vrNt9Rm4cJ59NXwMljmwO4hcpjVbv15TdSxoXeUWBbg=";
23 propagatedBuildInputs = [ numpy ];
25 nativeCheckInputs = [ pytestCheckHook ];
27 preCheck = "pushd $out";
30 disabledTests = [ "test_make_c_files" ];
32 pythonImportsCheck = [ "bottleneck" ];
35 description = "Fast NumPy array functions";
36 homepage = "https://github.com/pydata/bottleneck";
37 license = licenses.bsd2;