Merge pull request #96664 from risicle/ris-blis-missing-dependency

pythonPackages.blis: add missing dependency numpy
gstqt5
Daniël de Kok 2020-08-30 13:38:50 +02:00 committed by GitHub
commit b4631b0dcc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 2 deletions

View File

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