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

38 lines
826 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, fetchPypi
, pytest, pytestcov, pytestpep8, pytest_xdist
2018-05-10 10:13:30 +02:00
, six, numpy, scipy, pyyaml, h5py
2018-08-03 11:43:14 +02:00
, keras-applications, keras-preprocessing
2017-02-15 12:56:58 +01:00
}:
buildPythonPackage rec {
pname = "Keras";
2018-10-06 12:56:18 +02:00
version = "2.2.4";
2017-02-15 12:56:58 +01:00
src = fetchPypi {
inherit pname version;
2018-10-06 12:56:18 +02:00
sha256 = "90b610a3dbbf6d257b20a079eba3fdf2eed2158f64066a7c6f7227023fd60bc9";
2017-02-15 12:56:58 +01:00
};
checkInputs = [
pytest
pytestcov
pytestpep8
pytest_xdist
];
propagatedBuildInputs = [
2018-05-10 10:13:30 +02:00
six pyyaml numpy scipy h5py
2018-08-03 11:43:14 +02:00
keras-applications keras-preprocessing
2017-02-15 12:56:58 +01: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 12:56:58 +01:00
license = licenses.mit;
maintainers = with maintainers; [ NikolaMandic ];
};
}