python3Packages.numba-scipy: init at 0.3.0
This commit is contained in:
parent
4ff8eccf82
commit
3126821584
40
pkgs/development/python-modules/numba-scipy/default.nix
Normal file
40
pkgs/development/python-modules/numba-scipy/default.nix
Normal file
@ -0,0 +1,40 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, scipy
|
||||
, numba
|
||||
, pytestCheckHook
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "numba-scipy";
|
||||
version = "0.3.0";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "sha256-qJeoWiG1LdtFB9cME1d8xVaC0BXGDJEYjCOEdHvSkmQ=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
scipy
|
||||
numba
|
||||
];
|
||||
|
||||
postPatch = ''
|
||||
substituteInPlace setup.py --replace "scipy>=0.16,<=1.6.2" "scipy>=0.16,<=1.7.3"
|
||||
'';
|
||||
|
||||
checkInputs = [
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "numba" ];
|
||||
|
||||
meta = with lib; {
|
||||
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 ];
|
||||
};
|
||||
}
|
@ -5554,6 +5554,8 @@ in {
|
||||
|
||||
numba = callPackage ../development/python-modules/numba { };
|
||||
|
||||
numba-scipy = callPackage ../development/python-modules/numba-scipy { };
|
||||
|
||||
numcodecs = callPackage ../development/python-modules/numcodecs { };
|
||||
|
||||
numericalunits = callPackage ../development/python-modules/numericalunits { };
|
||||
|
Loading…
Reference in New Issue
Block a user