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 pytestFlagsArray = [ "$out/${python.sitePackages}" ];
29 disabledTests = [ "test_make_c_files" ];
31 pythonImportsCheck = [ "bottleneck" ];
34 description = "Fast NumPy array functions";
35 homepage = "https://github.com/pydata/bottleneck";
36 license = licenses.bsd2;