aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/python-modules/google_cloud_automl/default.nix
blob: 3ad8dcb12fb392259fe929a331d6d7b9b33413d8 (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
36
37
38
39
{ stdenv, buildPythonPackage, fetchPypi, pythonOlder, pytestCheckHook, libcst
, google_api_core, google_cloud_storage, google_cloud_testutils, pandas
, proto-plus, pytest-asyncio, mock }:

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

  src = fetchPypi {
    inherit pname version;
    sha256 = "520dfe2ee04d28f3088c9c582fa2a534fc272647d5e2e59acc903c0152e61696";
  };

  disabled = pythonOlder "3.6";

  checkInputs = [
    google_cloud_storage
    google_cloud_testutils
    mock
    pandas
    pytest-asyncio
    pytestCheckHook
  ];
  propagatedBuildInputs = [ google_api_core libcst proto-plus ];

  # ignore tests which need credentials
  disabledTests = [ "test_prediction_client_client_info" ];
  preCheck = ''
    rm -r google
    rm tests/system/gapic/v1beta1/test_system_tables_client_v1.py
  '';

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