about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFabian Affolter <fabian@affolter-engineering.ch>2024-04-17 10:13:40 +0200
committerGitHub <noreply@github.com>2024-04-17 10:13:40 +0200
commit99e89cb087eec305280903d2d80fca753abbf921 (patch)
tree2f0c810e6dd8bf21565c1c9136609f9cbf0cd9f2
parent81df1d684efa3823729fbc8596970385fe7575af (diff)
parentbc46ba538e301b9d60247d7e68c77e37d57f919a (diff)
Merge pull request #304586 from r-ryantm/auto-update/python311Packages.google-cloud-bigquery-datatransfer
python311Packages.google-cloud-bigquery-datatransfer: 3.15.1 -> 3.15.2
-rw-r--r--pkgs/development/python-modules/google-cloud-bigquery-datatransfer/default.nix36
1 files changed, 20 insertions, 16 deletions
diff --git a/pkgs/development/python-modules/google-cloud-bigquery-datatransfer/default.nix b/pkgs/development/python-modules/google-cloud-bigquery-datatransfer/default.nix
index ce3ddc189ada3..e7eaf3bd595e5 100644
--- a/pkgs/development/python-modules/google-cloud-bigquery-datatransfer/default.nix
+++ b/pkgs/development/python-modules/google-cloud-bigquery-datatransfer/default.nix
@@ -1,30 +1,34 @@
-{ lib
-, buildPythonPackage
-, fetchPypi
-, google-api-core
-, libcst
-, mock
-, proto-plus
-, protobuf
-, pytest-asyncio
-, pytestCheckHook
-, pythonOlder
-, pytz
+{
+  lib,
+  buildPythonPackage,
+  fetchPypi,
+  google-api-core,
+  libcst,
+  mock,
+  proto-plus,
+  protobuf,
+  pytest-asyncio,
+  pytestCheckHook,
+  pythonOlder,
+  pytz,
+  setuptools,
 }:
 
 buildPythonPackage rec {
   pname = "google-cloud-bigquery-datatransfer";
-  version = "3.15.1";
-  format = "setuptools";
+  version = "3.15.2";
+  pyproject = true;
 
   disabled = pythonOlder "3.7";
 
   src = fetchPypi {
     inherit pname version;
-    hash = "sha256-2A0v6UBFHeP0fsU71e22Aau7HfQYnN4fo4bYD3G+p2I=";
+    hash = "sha256-oX4E3G3PB9qqCo5ZWt+p702oV5KUzlIdXNczthJ73Q0=";
   };
 
-  propagatedBuildInputs = [
+  build-system = [ setuptools ];
+
+  dependencies = [
     google-api-core
     libcst
     proto-plus