From fe003a9af24dc2f1ed16ced397814b277973deaf Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Wed, 28 Dec 2022 14:31:40 +0100 Subject: [PATCH] python310Packages.google-cloud-bigquery-storage: 2.16.2 -> 2.17.0 Changelog: https://github.com/googleapis/python-bigquery-storage/blob/v2.17.0/CHANGELOG.md --- .../google-cloud-bigquery-storage/default.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/google-cloud-bigquery-storage/default.nix b/pkgs/development/python-modules/google-cloud-bigquery-storage/default.nix index f3be87564be7..650bb81b4b7b 100644 --- a/pkgs/development/python-modules/google-cloud-bigquery-storage/default.nix +++ b/pkgs/development/python-modules/google-cloud-bigquery-storage/default.nix @@ -4,25 +4,27 @@ , google-api-core , google-auth , google-cloud-bigquery +, protobuf , pytestCheckHook , pythonOlder }: buildPythonPackage rec { pname = "google-cloud-bigquery-storage"; - version = "2.16.2"; + version = "2.17.0"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; - hash = "sha256-5qyk97b06tuH+FEJBhd1Y1GOFYfIt7FivPjhyede9BY="; + hash = "sha256-AsEcoAmOg+J/g8P5o51PzO9R5z0Nce9zQ/EiIYhmaFw="; }; propagatedBuildInputs = [ google-api-core - ]; + protobuf + ] ++ google-api-core.optional-dependencies.grpc; checkInputs = [ google-auth