python.pkgs.Keras: fix build
This commit is contained in:
parent
292eb914a4
commit
c248aa40b1
@ -1,12 +1,11 @@
|
|||||||
{ stdenv, lib, buildPythonPackage, fetchPypi
|
{ stdenv, lib, buildPythonPackage, fetchPypi
|
||||||
, pytest, pytestcov, pytestpep8, pytest_xdist
|
, pytest, pytestcov, pytestpep8, pytest_xdist
|
||||||
, six, numpy, scipy, pyyaml
|
, six, numpy, scipy, pyyaml, h5py
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "Keras";
|
pname = "Keras";
|
||||||
version = "2.1.6";
|
version = "2.1.6";
|
||||||
name = "${pname}-${version}";
|
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
@ -21,7 +20,7 @@ buildPythonPackage rec {
|
|||||||
];
|
];
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
six pyyaml numpy scipy
|
six pyyaml numpy scipy h5py
|
||||||
];
|
];
|
||||||
|
|
||||||
# Couldn't get tests working
|
# Couldn't get tests working
|
||||||
|
Loading…
Reference in New Issue
Block a user