Merge pull request #15608 from NikolaMandic/keras

Keras: init at 1.0.3
This commit is contained in:
Arseniy Seroka 2016-05-22 20:26:34 +03:00
commit 381f72b37f

View File

@ -27229,6 +27229,28 @@ in modules // {
};
};
Keras = buildPythonPackage rec {
name = "Keras-${version}";
version = "1.0.3";
disabled = isPy3k;
src = pkgs.fetchurl {
url = "mirror://pypi/k/keras/${name}.tar.gz";
sha256 = "0wi826bvifvy12w490ghj1g45z5xb83q2cadqh425sg56p98khaq";
};
propagatedBuildInputs = with self; [
six Theano pyyaml
];
meta = {
description = "Deep Learning library for Theano and TensorFlow";
homepage = "https://keras.io";
license = licenses.mit;
maintainers = with maintainers; [ NikolaMandic ];
};
};
sigtools = buildPythonPackage rec {
name = "sigtools-${version}";
version = "1.1a3";