summary refs log tree commit diff
path: root/pkgs/development/python-modules/blis
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/python-modules/blis
parentc4330a0ca01bec7dc0d0333786a2baf35e7eb450 (diff)
downloadnixpkgs-4b3f8bd2140970accd55cb6543f3803632695ebc.tar
nixpkgs-4b3f8bd2140970accd55cb6543f3803632695ebc.tar.gz
nixpkgs-4b3f8bd2140970accd55cb6543f3803632695ebc.tar.bz2
nixpkgs-4b3f8bd2140970accd55cb6543f3803632695ebc.tar.lz
nixpkgs-4b3f8bd2140970accd55cb6543f3803632695ebc.tar.xz
nixpkgs-4b3f8bd2140970accd55cb6543f3803632695ebc.tar.zst
nixpkgs-4b3f8bd2140970accd55cb6543f3803632695ebc.zip
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/python-modules/blis')
-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 596579f8148..5d4b9bcb5e2 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
   ];