Merge pull request #15608 from NikolaMandic/keras

Keras: init at 1.0.3

+22
+22
pkgs/top-level/python-packages.nix
··· 27229 }; 27230 }; 27231 27232 sigtools = buildPythonPackage rec { 27233 name = "sigtools-${version}"; 27234 version = "1.1a3";
··· 27229 }; 27230 }; 27231 27232 + Keras = buildPythonPackage rec { 27233 + name = "Keras-${version}"; 27234 + version = "1.0.3"; 27235 + disabled = isPy3k; 27236 + 27237 + src = pkgs.fetchurl { 27238 + url = "mirror://pypi/k/keras/${name}.tar.gz"; 27239 + sha256 = "0wi826bvifvy12w490ghj1g45z5xb83q2cadqh425sg56p98khaq"; 27240 + }; 27241 + 27242 + propagatedBuildInputs = with self; [ 27243 + six Theano pyyaml 27244 + ]; 27245 + 27246 + meta = { 27247 + description = "Deep Learning library for Theano and TensorFlow"; 27248 + homepage = "https://keras.io"; 27249 + license = licenses.mit; 27250 + maintainers = with maintainers; [ NikolaMandic ]; 27251 + }; 27252 + }; 27253 + 27254 sigtools = buildPythonPackage rec { 27255 name = "sigtools-${version}"; 27256 version = "1.1a3";