aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/google_cloud_automl/default.nix
blob: 6900b4f212f1a4482837ea2d95066f818c6cdd7e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{ stdenv
, buildPythonPackage
, fetchPypi
, enum34
, google_api_core
, google_cloud_storage
, pandas
, pytest
, mock
}:

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

  src = fetchPypi {
    inherit pname version;
    sha256 = "031331fs97jpyxacwsmhig0ndidn97r288qnkrzfdvg1wxw5rdhi";
  };

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

  # ignore tests which need credentials
  checkPhase = ''
    pytest tests/unit -k 'not upload and not prediction_client_client_info'
  '';

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