2018-07-20 17:44:44 -07:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi
|
2017-10-15 08:43:15 -07:00
|
|
|
, pytest, pytestcov, pytestpep8, pytest_xdist
|
2018-05-10 01:13:30 -07:00
|
|
|
, six, numpy, scipy, pyyaml, h5py
|
2018-08-03 02:43:14 -07:00
|
|
|
, keras-applications, keras-preprocessing
|
2017-02-15 03:56:58 -08:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "Keras";
|
2019-10-23 23:47:37 -07:00
|
|
|
version = "2.3.1";
|
2017-02-15 03:56:58 -08:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-10-23 23:47:37 -07:00
|
|
|
sha256 = "321d43772006a25a1d58eea17401ef2a34d388b588c9f7646c34796151ebc8cc";
|
2017-02-15 03:56:58 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
checkInputs = [
|
|
|
|
pytest
|
|
|
|
pytestcov
|
|
|
|
pytestpep8
|
|
|
|
pytest_xdist
|
|
|
|
];
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
2018-05-10 01:13:30 -07:00
|
|
|
six pyyaml numpy scipy h5py
|
2018-08-03 02:43:14 -07:00
|
|
|
keras-applications keras-preprocessing
|
2017-02-15 03:56:58 -08:00
|
|
|
];
|
|
|
|
|
|
|
|
# Couldn't get tests working
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Deep Learning library for Theano and TensorFlow";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://keras.io";
|
2017-02-15 03:56:58 -08:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ NikolaMandic ];
|
|
|
|
};
|
|
|
|
}
|