Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / numba-scipy / default.nix
blobc4c37b7ad3333c23be0983106a899f21ed800f3f
1 { stdenv
2 , lib
3 , buildPythonPackage
4 , fetchPypi
5 , scipy
6 , numba
7 , pytestCheckHook
8 , pythonOlder
9 , pythonRelaxDepsHook
12 buildPythonPackage rec {
13   pname = "numba-scipy";
14   version = "0.3.1";
15   format = "setuptools";
17   disabled = pythonOlder "3.6";
19   src = fetchPypi {
20     inherit pname version;
21     hash = "sha256-cApTGH5GJZH/RbkRjKhL3injvixD5kvfaS49FjrPA2U=";
22   };
24   propagatedBuildInputs = [
25     scipy
26     numba
27   ];
29   nativeCheckInputs = [
30     pytestCheckHook
31     pythonRelaxDepsHook
32   ];
33   pythonRelaxDeps = [
34     "scipy"
35     "numba"
36   ];
38   pythonImportsCheck = [
39     "numba_scipy"
40   ];
42   meta = with lib; {
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 ];
49   };