summary refs log blame commit diff
path: root/pkgs/development/python-modules/keras/default.nix
blob: 0c1f6f35d5497394e4b2889502666017b59c67eb (plain) (tree)
1
2
3
4
5
6
7
8
9
                                       
                                             
                                 
                                         



                        
                    


                          
                                                                                









                           
                               
                                          






                                                                    
                                



                                                     
{ stdenv, buildPythonPackage, fetchPypi
, pytest, pytestcov, pytestpep8, pytest_xdist
, six, numpy, scipy, pyyaml, h5py
, keras-applications, keras-preprocessing
}:

buildPythonPackage rec {
  pname = "Keras";
  version = "2.3.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "321d43772006a25a1d58eea17401ef2a34d388b588c9f7646c34796151ebc8cc";
  };

  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 ];
  };
}