anki-bin: 24.06.3 -> 24.11 (#360722)
[NixPkgs.git] / pkgs / development / python-modules / numba-scipy / default.nix
blob05c07632a97910fe761718a1025b033edda1b399
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   scipy,
6   numba,
7   pytestCheckHook,
8   pythonOlder,
9 }:
11 buildPythonPackage rec {
12   pname = "numba-scipy";
13   version = "0.4.0";
14   format = "setuptools";
16   disabled = pythonOlder "3.6";
18   src = fetchPypi {
19     inherit pname version;
20     hash = "sha256-RDZF1mNcZnrcOzjQpjbZq8yXHnjeLAeAjYmvzXvFhEQ=";
21   };
23   propagatedBuildInputs = [
24     scipy
25     numba
26   ];
28   nativeCheckInputs = [
29     pytestCheckHook
30   ];
31   pythonRelaxDeps = [
32     "scipy"
33     "numba"
34   ];
36   pythonImportsCheck = [ "numba_scipy" ];
38   meta = with lib; {
39     description = "Extends Numba to make it aware of SciPy";
40     homepage = "https://github.com/numba/numba-scipy";
41     changelog = "https://github.com/numba/numba-scipy/blob/master/CHANGE_LOG";
42     license = licenses.bsd2;
43     maintainers = with maintainers; [ Etjean ];
44   };