pythonPackages.resampy: Fix build

This commit is contained in:
Josef Kemetmüller 2019-03-04 21:37:31 +01:00
parent 47f8a520f8
commit 8e1afe7f14

View File

@ -6,6 +6,7 @@
, numpy , numpy
, scipy , scipy
, cython , cython
, numba
, six , six
}: }:
@ -19,7 +20,7 @@ buildPythonPackage rec {
}; };
checkInputs = [ pytest pytestcov ]; checkInputs = [ pytest pytestcov ];
propagatedBuildInputs = [ numpy scipy cython six ]; propagatedBuildInputs = [ numpy scipy cython numba six ];
# No tests included # No tests included
doCheck = false; doCheck = false;