mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-18 19:54:05 +00:00
44 lines
748 B
Nix
44 lines
748 B
Nix
|
{ 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 ];
|
||
|
};
|
||
|
}
|