python38Packages.google-cloud-dataproc: 2.5.0 -> 3.0.0

This commit is contained in:
Sandro Jäckel 2021-10-12 11:50:16 +02:00
parent 948d4f35f3
commit bd2fcb1da4
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5

View File

@ -11,11 +11,11 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "google-cloud-dataproc"; pname = "google-cloud-dataproc";
version = "2.5.0"; version = "3.0.0";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "sha256-wRGIuut2mJ6RJh8fRUAT0JDmnUreQYXhgVgsfRxvyxo="; sha256 = "sha256-a81HBeNoLXSpJJJ0BBqJz24ls0TFMwiHJgkkNyHZGvo=";
}; };
propagatedBuildInputs = [ google-api-core libcst proto-plus ]; propagatedBuildInputs = [ google-api-core libcst proto-plus ];
@ -30,12 +30,11 @@ buildPythonPackage rec {
pythonImportsCheck = [ pythonImportsCheck = [
"google.cloud.dataproc" "google.cloud.dataproc"
"google.cloud.dataproc_v1" "google.cloud.dataproc_v1"
"google.cloud.dataproc_v1beta2"
]; ];
meta = with lib; { meta = with lib; {
description = "Google Cloud Dataproc API client library"; description = "Google Cloud Dataproc API client library";
homepage = "https://github.com/GoogleCloudPlatform/google-cloud-python"; homepage = "https://github.com/googleapis/python-dataproc";
license = licenses.asl20; license = licenses.asl20;
maintainers = with maintainers; [ SuperSandro2000 ]; maintainers = with maintainers; [ SuperSandro2000 ];
}; };