nixpkgs/pkgs/development/python-modules/keras/default.nix
2018-04-08 11:34:54 +02:00

37 lines
767 B
Nix

{ stdenv, lib, buildPythonPackage, fetchPypi
, pytest, pytestcov, pytestpep8, pytest_xdist
, six, numpy, scipy, pyyaml
}:
buildPythonPackage rec {
pname = "Keras";
version = "2.1.5";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
sha256 = "907ad29add1fff27342a9f4fe3e60003d450d3af41a38f22f629c7736fc8399d";
};
checkInputs = [
pytest
pytestcov
pytestpep8
pytest_xdist
];
propagatedBuildInputs = [
six pyyaml numpy scipy
];
# 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 ];
};
}