38 lines
820 B
Nix
38 lines
820 B
Nix
{ lib, buildPythonPackage, fetchPypi
|
|
, pytest, pytest-cov, pytest-xdist
|
|
, six, numpy, scipy, pyyaml, h5py
|
|
, keras-applications, keras-preprocessing
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "keras";
|
|
version = "2.7.0";
|
|
format = "wheel";
|
|
|
|
src = fetchPypi {
|
|
inherit format pname version;
|
|
sha256 = "0c33ae1f728064ca0d35dfba999e9c316f03623bf5688c82fb83cc74a80ea248";
|
|
};
|
|
|
|
checkInputs = [
|
|
pytest
|
|
pytest-cov
|
|
pytest-xdist
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
six pyyaml numpy scipy h5py
|
|
keras-applications keras-preprocessing
|
|
];
|
|
|
|
# Couldn't get tests working
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Deep Learning library for Theano and TensorFlow";
|
|
homepage = "https://keras.io";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ NikolaMandic ];
|
|
};
|
|
}
|