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





                    
      



                                
                    


                          
                                                                                

    
                                












                                                                          
{ stdenv
, buildPythonPackage
, fetchPypi
, enum34
, google_api_core
, pytest
, mock
}:

buildPythonPackage rec {
  pname = "google-cloud-automl";
  version = "0.9.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "6541245cdee3e3ba5d98bb3ecd0b343fd5d3de1e880cfc5daf59f4a69a045171";
  };

  checkInputs = [ pytest mock ];
  propagatedBuildInputs = [ enum34 google_api_core ];

  checkPhase = ''
    pytest tests/unit
  '';

  meta = with stdenv.lib; {
    description = "Cloud AutoML API client library";
    homepage = https://github.com/GoogleCloudPlatform/google-cloud-python;
    license = licenses.asl20;
    maintainers = [ maintainers.costrouc ];
  };
}