summary refs log tree commit diff
diff options
context:
space:
mode:
authorBen Darwin <bcdarwin@gmail.com>2016-04-25 12:33:31 -0400
committerBen Darwin <bcdarwin@gmail.com>2016-04-25 12:33:31 -0400
commita4ad51f0c1e676975b87d28e3dfc50be319c72b5 (patch)
tree7b8dfab3aeb592bd1f0e09fac21ea27194c3144a
parent5a2563c059309c0600404ce69f06a235fb717e4f (diff)
downloadnixlib-a4ad51f0c1e676975b87d28e3dfc50be319c72b5.tar
nixlib-a4ad51f0c1e676975b87d28e3dfc50be319c72b5.tar.gz
nixlib-a4ad51f0c1e676975b87d28e3dfc50be319c72b5.tar.bz2
nixlib-a4ad51f0c1e676975b87d28e3dfc50be319c72b5.tar.lz
nixlib-a4ad51f0c1e676975b87d28e3dfc50be319c72b5.tar.xz
nixlib-a4ad51f0c1e676975b87d28e3dfc50be319c72b5.tar.zst
nixlib-a4ad51f0c1e676975b87d28e3dfc50be319c72b5.zip
switch from pkgs.blas to numpy.blas
-rw-r--r--pkgs/top-level/python-packages.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index d10a64c588d7..3bc71adfb6c4 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -20105,7 +20105,7 @@ in modules // {
     # the fix for which hasn't been merged yet.
 
     # keep Nose around since running the tests by hand is possible from Python or bash
-    propagatedBuildInputs = [ stdenv pkgs.blas ] ++ (with self; [ nose numpy pydot_ng scipy six ]);
+    propagatedBuildInputs = [ stdenv ] ++ (with self; [ nose numpy numpy.blas pydot_ng scipy six ]);
 
     meta = {
       homepage = http://deeplearning.net/software/theano/;