depot/third_party/nixpkgs/pkgs/development/python-modules/numba-scipy/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

49 lines
934 B
Nix

{
stdenv,
lib,
buildPythonPackage,
fetchPypi,
scipy,
numba,
pytestCheckHook,
pythonOlder,
pythonRelaxDepsHook,
}:
buildPythonPackage rec {
pname = "numba-scipy";
version = "0.4.0";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
hash = "sha256-RDZF1mNcZnrcOzjQpjbZq8yXHnjeLAeAjYmvzXvFhEQ=";
};
propagatedBuildInputs = [
scipy
numba
];
nativeCheckInputs = [
pytestCheckHook
pythonRelaxDepsHook
];
pythonRelaxDeps = [
"scipy"
"numba"
];
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 ];
};
}