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
1 changed files with 2 additions and 1 deletions
|
@ -8,6 +8,7 @@
|
|||
, isPy3k
|
||||
, numpy
|
||||
, llvmlite
|
||||
, setuptools
|
||||
, funcsigs
|
||||
, singledispatch
|
||||
, libcxx
|
||||
|
@ -26,7 +27,7 @@ buildPythonPackage rec {
|
|||
|
||||
NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${libcxx}/include/c++/v1";
|
||||
|
||||
propagatedBuildInputs = [numpy llvmlite]
|
||||
propagatedBuildInputs = [numpy llvmlite setuptools]
|
||||
++ lib.optionals isPy27 [ funcsigs singledispatch];
|
||||
|
||||
# Copy test script into $out and run the test suite.
|
||||
|
|
Loading…
Reference in a new issue