python3Packages.numba: add setuptools dependency
Numba needs setuptools as a runtime dependency: https://numba.pydata.org/numba-doc/latest/user/installing.html#dependency-list
This commit is contained in:
parent
d08ec2f195
commit
f80ef84960
@ -8,6 +8,7 @@
|
|||||||
, isPy3k
|
, isPy3k
|
||||||
, numpy
|
, numpy
|
||||||
, llvmlite
|
, llvmlite
|
||||||
|
, setuptools
|
||||||
, funcsigs
|
, funcsigs
|
||||||
, singledispatch
|
, singledispatch
|
||||||
, libcxx
|
, libcxx
|
||||||
@ -26,7 +27,7 @@ buildPythonPackage rec {
|
|||||||
|
|
||||||
NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${libcxx}/include/c++/v1";
|
NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${libcxx}/include/c++/v1";
|
||||||
|
|
||||||
propagatedBuildInputs = [numpy llvmlite]
|
propagatedBuildInputs = [numpy llvmlite setuptools]
|
||||||
++ lib.optionals isPy27 [ funcsigs singledispatch];
|
++ lib.optionals isPy27 [ funcsigs singledispatch];
|
||||||
|
|
||||||
# Copy test script into $out and run the test suite.
|
# Copy test script into $out and run the test suite.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user