nixpkgs/pkgs/development/python-modules/keras/default.nix
2017-12-31 10:55:07 +01: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.2";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
sha256 = "3ee56fc129d9d00b1916046e50056047836f97ada59df029e5661fb34442d5e8";
};
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 ];
};
}