{ stdenv , buildPythonPackage , fetchPypi , pytest , pytestcov , pytestpep8 , pytest_xdist , six , Theano , pyyaml }: buildPythonPackage rec { pname = "Keras"; version = "2.0.4"; name = "${pname}-${version}"; src = fetchPypi { inherit pname version; sha256 = "1cbe62af6821963321b275d5598fd94e63c11feaa1d4deaa79c9eb9ee0e1d68a"; }; checkInputs = [ pytest pytestcov pytestpep8 pytest_xdist ]; propagatedBuildInputs = [ six Theano pyyaml ]; # 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 ]; }; }