pythonPackages.blis: add missing dependency numpy

blis' numpy dependency seems to have been falsely satisfied by its
inclusion in checkInputs, whereas this seems to actually be an install
dependency. this can be demonstrated by attempting to build this package
with doCheck = false and watching it fail.

also removed cython from checkInputs as it's already in nativeBuildInputs
This commit is contained in:
Robert Scott 2020-08-29 20:53:51 +01:00
parent c4330a0ca0
commit 4b3f8bd214

@ -20,11 +20,13 @@ buildPythonPackage rec {
cython
];
propagatedBuildInputs = [
numpy
];
checkInputs = [
cython
hypothesis
numpy
pytest
];