2018-07-21 01:44:44 +01:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi
|
2017-10-15 16:43:15 +01:00
|
|
|
, pytest, pytestcov, pytestpep8, pytest_xdist
|
2018-05-10 09:13:30 +01:00
|
|
|
, six, numpy, scipy, pyyaml, h5py
|
2018-08-03 10:43:14 +01:00
|
|
|
, keras-applications, keras-preprocessing
|
2017-02-15 11:56:58 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "Keras";
|
2018-08-03 10:43:14 +01:00
|
|
|
version = "2.2.2";
|
2017-02-15 11:56:58 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-08-03 10:43:14 +01:00
|
|
|
sha256 = "468d98da104ec5c3dbb10c2ef6bb345ab154f6ca2d722d4c250ef4d6105de17a";
|
2017-02-15 11:56:58 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
checkInputs = [
|
|
|
|
pytest
|
|
|
|
pytestcov
|
|
|
|
pytestpep8
|
|
|
|
pytest_xdist
|
|
|
|
];
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
2018-05-10 09:13:30 +01:00
|
|
|
six pyyaml numpy scipy h5py
|
2018-08-03 10:43:14 +01:00
|
|
|
keras-applications keras-preprocessing
|
2017-02-15 11:56:58 +00:00
|
|
|
];
|
|
|
|
|
2018-09-03 20:59:36 +01:00
|
|
|
# Keras 2.2.2 expects older versions of keras_applications
|
|
|
|
# and keras_preprocessing. These substitutions can be removed
|
|
|
|
# for for the next Keras release.
|
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace setup.py --replace "keras_applications==1.0.4" "keras_applications==1.0.5"
|
|
|
|
substituteInPlace setup.py --replace "keras_preprocessing==1.0.2" "keras_preprocessing==1.0.3"
|
|
|
|
'';
|
|
|
|
|
2017-02-15 11:56:58 +00:00
|
|
|
# Couldn't get tests working
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Deep Learning library for Theano and TensorFlow";
|
2017-08-01 21:03:30 +01:00
|
|
|
homepage = https://keras.io;
|
2017-02-15 11:56:58 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ NikolaMandic ];
|
|
|
|
};
|
|
|
|
}
|