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

36 lines
746 B
Nix
Raw Normal View History

{ stdenv, lib, buildPythonPackage, fetchPypi
, pytest, pytestcov, pytestpep8, pytest_xdist
2018-05-10 09:13:30 +01:00
, six, numpy, scipy, pyyaml, h5py
2017-02-15 11:56:58 +00:00
}:
buildPythonPackage rec {
pname = "Keras";
2018-05-09 15:47:59 +01:00
version = "2.1.6";
2017-02-15 11:56:58 +00:00
src = fetchPypi {
inherit pname version;
2018-05-09 15:47:59 +01:00
sha256 = "c14af1081242c25617ade7eb62121d58d01f16e1e744bae9fc4f1f95a417716e";
2017-02-15 11:56:58 +00:00
};
checkInputs = [
pytest
pytestcov
pytestpep8
pytest_xdist
];
propagatedBuildInputs = [
2018-05-10 09:13:30 +01:00
six pyyaml numpy scipy h5py
2017-02-15 11:56:58 +00:00
];
# 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 11:56:58 +00:00
license = licenses.mit;
maintainers = with maintainers; [ NikolaMandic ];
};
}