2017-10-15 15:43:15 +00:00
|
|
|
{ stdenv, lib, buildPythonPackage, fetchPypi
|
|
|
|
, pytest, pytestcov, pytestpep8, pytest_xdist
|
|
|
|
, six, numpy, scipy, pyyaml
|
2017-02-15 11:56:58 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "Keras";
|
2018-02-17 13:20:43 +00:00
|
|
|
version = "2.1.4";
|
2017-02-15 11:56:58 +00:00
|
|
|
name = "${pname}-${version}";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-02-17 13:20:43 +00:00
|
|
|
sha256 = "7ee1fcc79072ac904a4f008d715bcb78c60250ae3cd41d99e268c60ade8d0d3a";
|
2017-02-15 11:56:58 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
checkInputs = [
|
|
|
|
pytest
|
|
|
|
pytestcov
|
|
|
|
pytestpep8
|
|
|
|
pytest_xdist
|
|
|
|
];
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
2017-10-15 15:43:15 +00:00
|
|
|
six pyyaml numpy scipy
|
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 20:03:30 +00:00
|
|
|
homepage = https://keras.io;
|
2017-02-15 11:56:58 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ NikolaMandic ];
|
|
|
|
};
|
|
|
|
}
|