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