about summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorRobert Scott <code@humanleg.org.uk>2020-08-29 20:53:51 +0100
committerRobert Scott <code@humanleg.org.uk>2020-08-29 20:55:51 +0100
commit4b3f8bd2140970accd55cb6543f3803632695ebc (patch)
tree829c58220d9e12ff8ebef8d78e5cfbf3d2f225f0 /pkgs/development
parentc4330a0ca01bec7dc0d0333786a2baf35e7eb450 (diff)
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
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/python-modules/blis/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/blis/default.nix b/pkgs/development/python-modules/blis/default.nix
index 596579f814899..5d4b9bcb5e21e 100644
--- a/pkgs/development/python-modules/blis/default.nix
+++ b/pkgs/development/python-modules/blis/default.nix
@@ -20,11 +20,13 @@ buildPythonPackage rec {
     cython
   ];
 
+  propagatedBuildInputs = [
+    numpy
+  ];
+
 
   checkInputs = [
-    cython
     hypothesis
-    numpy
     pytest
   ];