mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-17 14:19:58 +03:00
38 lines
826 B
Nix
38 lines
826 B
Nix
{ stdenv, buildPythonPackage, fetchPypi
|
|
, pytest, pytestcov, pytestpep8, pytest_xdist
|
|
, six, numpy, scipy, pyyaml, h5py
|
|
, keras-applications, keras-preprocessing
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "Keras";
|
|
version = "2.2.2";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "468d98da104ec5c3dbb10c2ef6bb345ab154f6ca2d722d4c250ef4d6105de17a";
|
|
};
|
|
|
|
checkInputs = [
|
|
pytest
|
|
pytestcov
|
|
pytestpep8
|
|
pytest_xdist
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
six pyyaml numpy scipy h5py
|
|
keras-applications keras-preprocessing
|
|
];
|
|
|
|
# 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 ];
|
|
};
|
|
}
|