11 buildPythonPackage rec {
12 pname = "numba-scipy";
14 format = "setuptools";
16 disabled = pythonOlder "3.6";
19 inherit pname version;
20 hash = "sha256-cApTGH5GJZH/RbkRjKhL3injvixD5kvfaS49FjrPA2U=";
23 propagatedBuildInputs = [
29 # https://github.com/numba/numba-scipy/pull/76
30 substituteInPlace setup.py \
31 --replace "scipy>=0.16,<=1.7.3" "scipy>=0.16"
38 pythonImportsCheck = [
43 broken = stdenv.isDarwin;
44 description = "Extends Numba to make it aware of SciPy";
45 homepage = "https://github.com/numba/numba-scipy";
46 changelog = "https://github.com/numba/numba-scipy/blob/master/CHANGE_LOG";
47 license = licenses.bsd2;
48 maintainers = with maintainers; [ Etjean ];