summary refs log tree commit diff
path: root/pkgs/development/python-modules/google-cloud-automl
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@gmail.com>2021-01-06 10:46:48 +0100
committerSandro Jäckel <sandro.jaeckel@gmail.com>2021-01-06 23:59:50 +0100
commitac391fdc0bad04e7c83c53eb2ef527c8bc9d16cb (patch)
tree4c3d2acf80ff6876cf447dc6c144c6fe8079986a /pkgs/development/python-modules/google-cloud-automl
parent692345a57070f2a03b59ac66b62872717b3b2d99 (diff)
downloadnixpkgs-ac391fdc0bad04e7c83c53eb2ef527c8bc9d16cb.tar
nixpkgs-ac391fdc0bad04e7c83c53eb2ef527c8bc9d16cb.tar.gz
nixpkgs-ac391fdc0bad04e7c83c53eb2ef527c8bc9d16cb.tar.bz2
nixpkgs-ac391fdc0bad04e7c83c53eb2ef527c8bc9d16cb.tar.lz
nixpkgs-ac391fdc0bad04e7c83c53eb2ef527c8bc9d16cb.tar.xz
nixpkgs-ac391fdc0bad04e7c83c53eb2ef527c8bc9d16cb.tar.zst
nixpkgs-ac391fdc0bad04e7c83c53eb2ef527c8bc9d16cb.zip
pythonPackages:google*: Noramlize names by replacing _ with -
Diffstat (limited to 'pkgs/development/python-modules/google-cloud-automl')
-rw-r--r--pkgs/development/python-modules/google-cloud-automl/default.nix59
1 files changed, 59 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/google-cloud-automl/default.nix b/pkgs/development/python-modules/google-cloud-automl/default.nix
new file mode 100644
index 00000000000..ce2a9e116cd
--- /dev/null
+++ b/pkgs/development/python-modules/google-cloud-automl/default.nix
@@ -0,0 +1,59 @@
+{ stdenv
+, buildPythonPackage
+, fetchPypi
+, 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";
+  };
+
+  propagatedBuildInputs = [ google-api-core libcst proto-plus ];
+
+  checkInputs = [
+    google-cloud-storage
+    google-cloud-testutils
+    mock
+    pandas
+    pytest-asyncio
+    pytestCheckHook
+  ];
+
+  preCheck = ''
+    # do not shadow imports
+    rm -r google
+    # requires credentials
+    rm tests/system/gapic/v1beta1/test_system_tables_client_v1.py
+  '';
+
+  disabledTests = [
+    # requires credentials
+    "test_prediction_client_client_info"
+  ];
+
+  pythonImportsCheck = [
+    "google.cloud.automl"
+    "google.cloud.automl_v1"
+    "google.cloud.automl_v1beta1"
+  ];
+
+  meta = with stdenv.lib; {
+    description = "Cloud AutoML API client library";
+    homepage = "https://github.com/googleapis/python-automl";
+    license = licenses.asl20;
+    maintainers = with maintainers; [ SuperSandro2000 ];
+  };
+}