Skip to content

Commit

Permalink
pythonPackages.Keras: 1.0.3 -> 1.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
FRidh committed Feb 15, 2017
1 parent 97c3beb commit 397e59b
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 21 deletions.
43 changes: 43 additions & 0 deletions pkgs/development/python-modules/keras/default.nix
@@ -0,0 +1,43 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, pytest
, pytestcov
, pytestpep8
, pytest_xdist
, six
, Theano
, pyyaml
}:

buildPythonPackage rec {
pname = "Keras";
version = "1.2.2";
name = "${pname}-${version}";

src = fetchPypi {
inherit pname version;
sha256 = "0bby93sffjadrxnx9j9nn2lq0ygsgqjp16260c6lz77b6r1qrcfj";
};

checkInputs = [
pytest
pytestcov
pytestpep8
pytest_xdist
];

propagatedBuildInputs = [
six Theano pyyaml
];

# Couldn't get tests working
doCheck = false;

meta = with stdenv.lib; {
description = "Deep Learning library for Theano and TensorFlow";
homepage = "https://keras.io";
license = licenses.mit;
maintainers = with maintainers; [ NikolaMandic ];
};
}
22 changes: 1 addition & 21 deletions pkgs/top-level/python-packages.nix
Expand Up @@ -31100,27 +31100,7 @@ EOF
};
};

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 ];
};
};
Keras = callPackage ../development/python-modules/keras { };

Lasagne = buildPythonPackage rec {
name = "Lasagne-${version}";
Expand Down

0 comments on commit 397e59b

Please sign in to comment.