nixpkgs/pkgs/development/python-modules/keras/default.nix

44 lines
758 B
Nix
Raw Normal View History

2017-02-15 03:56:58 -08:00
{ stdenv
, buildPythonPackage
, fetchPypi
, pytest
, pytestcov
, pytestpep8
, pytest_xdist
, six
, Theano
, pyyaml
}:
buildPythonPackage rec {
pname = "Keras";
2017-08-24 10:34:20 -07:00
version = "2.0.7";
2017-02-15 03:56:58 -08:00
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
2017-08-24 10:34:20 -07:00
sha256 = "a6c72ee2b94be1ffefe7e77b69582b9827211f0c356b2189459711844d3634c0";
2017-02-15 03:56:58 -08:00
};
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;
2017-02-15 03:56:58 -08:00
license = licenses.mit;
maintainers = with maintainers; [ NikolaMandic ];
};
}