1 { lib, buildPythonPackage, fetchPypi
8 buildPythonPackage rec {
13 inherit pname version;
14 sha256 = "20179f0b66359792ea283b69aa16366419132f3b6cf3adadc0c48e2e8118e573";
17 propagatedBuildInputs = [ numpy ];
20 substituteInPlace setup.py --replace "__builtins__.__NUMPY_SETUP__ = False" ""
23 checkInputs = [ pytest nose ];
25 py.test -p no:warnings $out/${python.sitePackages}
29 description = "Fast NumPy array functions written in C";
30 homepage = "https://github.com/pydata/bottleneck";
31 license = licenses.bsd2;
32 maintainers = with maintainers; [ ];