1 { lib, buildPythonPackage, fetchPypi
2 , pytest, pytestcov, pytest_xdist
3 , six, numpy, scipy, pyyaml, h5py
4 , keras-applications, keras-preprocessing
7 buildPythonPackage rec {
12 inherit pname version;
13 sha256 = "fedd729b52572fb108a98e3d97e1bac10a81d3917d2103cc20ab2a5f03beb973";
22 propagatedBuildInputs = [
23 six pyyaml numpy scipy h5py
24 keras-applications keras-preprocessing
27 # Couldn't get tests working
31 description = "Deep Learning library for Theano and TensorFlow";
32 homepage = "https://keras.io";
33 license = licenses.mit;
34 maintainers = with maintainers; [ NikolaMandic ];