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 807c9c8acb91..4eae86bbbf46 100644 --- a/pkgs/development/python-modules/google-cloud-bigquery-storage/default.nix +++ b/pkgs/development/python-modules/google-cloud-bigquery-storage/default.nix @@ -11,21 +11,25 @@ pyarrow, pytestCheckHook, pythonOlder, + setuptools, }: buildPythonPackage rec { pname = "google-cloud-bigquery-storage"; - version = "2.25.0"; - format = "setuptools"; + version = "2.26.0"; + pyproject = true; disabled = pythonOlder "3.7"; src = fetchPypi { - inherit pname version; - hash = "sha256-GV/9KxgOnqoivqs+QKC2Hs0UbssyZnz0Immo1xEbTUg="; + pname = "google_cloud_bigquery_storage"; + inherit version; + hash = "sha256-hAJ1vQpLIHwKyCG8xnQUBv+zte+UD6BQiakOtEA0U/o="; }; - propagatedBuildInputs = [ + build-system = [ setuptools ]; + + dependencies = [ google-api-core protobuf ] ++ google-api-core.optional-dependencies.grpc; @@ -57,10 +61,10 @@ buildPythonPackage rec { meta = with lib; { description = "BigQuery Storage API API client library"; - mainProgram = "fixup_bigquery_storage_v1_keywords.py"; homepage = "https://github.com/googleapis/python-bigquery-storage"; changelog = "https://github.com/googleapis/python-bigquery-storage/blob/v${version}/CHANGELOG.md"; license = licenses.asl20; maintainers = [ ]; + mainProgram = "fixup_bigquery_storage_v1_keywords.py"; }; }