summary refs log tree commit diff
path: root/pkgs/development/python-modules/keras
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2018-05-10 10:13:30 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2018-05-10 10:13:30 +0200
commitc248aa40b1102e1d450c1730424d9048648ffc19 (patch)
tree955280a1e74d2edf6124e9255d5ea5fa12b3d376 /pkgs/development/python-modules/keras
parent292eb914a44e3e9d9ae7e0330731f59ed3e38849 (diff)
downloadnixlib-c248aa40b1102e1d450c1730424d9048648ffc19.tar
nixlib-c248aa40b1102e1d450c1730424d9048648ffc19.tar.gz
nixlib-c248aa40b1102e1d450c1730424d9048648ffc19.tar.bz2
nixlib-c248aa40b1102e1d450c1730424d9048648ffc19.tar.lz
nixlib-c248aa40b1102e1d450c1730424d9048648ffc19.tar.xz
nixlib-c248aa40b1102e1d450c1730424d9048648ffc19.tar.zst
nixlib-c248aa40b1102e1d450c1730424d9048648ffc19.zip
python.pkgs.Keras: fix build
Diffstat (limited to 'pkgs/development/python-modules/keras')
-rw-r--r--pkgs/development/python-modules/keras/default.nix5
1 files changed, 2 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/keras/default.nix b/pkgs/development/python-modules/keras/default.nix
index 053ebb0fd019..f5590e11120b 100644
--- a/pkgs/development/python-modules/keras/default.nix
+++ b/pkgs/development/python-modules/keras/default.nix
@@ -1,12 +1,11 @@
 { stdenv, lib, buildPythonPackage, fetchPypi
 , pytest, pytestcov, pytestpep8, pytest_xdist
-, six, numpy, scipy, pyyaml
+, six, numpy, scipy, pyyaml, h5py
 }:
 
 buildPythonPackage rec {
   pname = "Keras";
   version = "2.1.6";
-  name = "${pname}-${version}";
 
   src = fetchPypi {
     inherit pname version;
@@ -21,7 +20,7 @@ buildPythonPackage rec {
   ];
 
   propagatedBuildInputs = [
-    six pyyaml numpy scipy
+    six pyyaml numpy scipy h5py
   ];
 
   # Couldn't get tests working