depot/third_party/nixpkgs/pkgs/development/python-modules/numba-scipy/default.nix
Default email 3a4df29a92 Project import generated by Copybara.
GitOrigin-RevId: 3d7435c638baffaa826b85459df0fff47f12317d
2022-06-16 19:23:12 +02:00

50 lines
986 B
Nix

{ stdenv
, lib
, buildPythonPackage
, fetchPypi
, scipy
, numba
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "numba-scipy";
version = "0.3.0";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
hash = "sha256-qJeoWiG1LdtFB9cME1d8xVaC0BXGDJEYjCOEdHvSkmQ=";
};
propagatedBuildInputs = [
scipy
numba
];
postPatch = ''
# https://github.com/numba/numba-scipy/pull/76
substituteInPlace setup.py \
--replace "scipy>=0.16,<=1.6.2" "scipy>=0.16"
'';
checkInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"numba_scipy"
];
meta = with lib; {
broken = stdenv.isDarwin;
description = "Extends Numba to make it aware of SciPy";
homepage = "https://github.com/numba/numba-scipy";
changelog = "https://github.com/numba/numba-scipy/blob/master/CHANGE_LOG";
license = licenses.bsd2;
maintainers = with maintainers; [ Etjean ];
};
}