about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2024-01-15 12:52:52 +0100
committerFabian Affolter <mail@fabian-affolter.ch>2024-01-15 12:52:52 +0100
commite2d4c3cfcaeaffdf082635ff746c953e68b23b8c (patch)
tree80665f90abdb5af7e2b1f83aaeed616acfbe44eb
parent56f85cb5dc97675e54a9b53b0642d2a04ee62408 (diff)
downloadnixlib-e2d4c3cfcaeaffdf082635ff746c953e68b23b8c.tar
nixlib-e2d4c3cfcaeaffdf082635ff746c953e68b23b8c.tar.gz
nixlib-e2d4c3cfcaeaffdf082635ff746c953e68b23b8c.tar.bz2
nixlib-e2d4c3cfcaeaffdf082635ff746c953e68b23b8c.tar.lz
nixlib-e2d4c3cfcaeaffdf082635ff746c953e68b23b8c.tar.xz
nixlib-e2d4c3cfcaeaffdf082635ff746c953e68b23b8c.tar.zst
nixlib-e2d4c3cfcaeaffdf082635ff746c953e68b23b8c.zip
python311Packages.google-cloud-spanner: 3.40.1 -> 3.41.0
Changelog: https://github.com/googleapis/python-spanner/blob/v3.41.0/CHANGELOG.md
-rw-r--r--pkgs/development/python-modules/google-cloud-spanner/default.nix13
1 files changed, 10 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/google-cloud-spanner/default.nix b/pkgs/development/python-modules/google-cloud-spanner/default.nix
index d7dcf9c3424e..ab352fa62569 100644
--- a/pkgs/development/python-modules/google-cloud-spanner/default.nix
+++ b/pkgs/development/python-modules/google-cloud-spanner/default.nix
@@ -1,5 +1,6 @@
 { lib
 , buildPythonPackage
+, deprecated
 , fetchPypi
 , google-api-core
 , google-cloud-core
@@ -13,21 +14,27 @@
 , pytestCheckHook
 , pythonOlder
 , sqlparse
+, setuptools
 }:
 
 buildPythonPackage rec {
   pname = "google-cloud-spanner";
-  version = "3.40.1";
-  format = "setuptools";
+  version = "3.41.0";
+  pyproject = true;
 
   disabled = pythonOlder "3.7";
 
   src = fetchPypi {
     inherit pname version;
-    hash = "sha256-YWsHyGza5seLrSe4qznYznonNRHyuR/iYPFw2SZlPC4=";
+    hash = "sha256-jK2hHdYdxwsEmk/aDp7ArXZwZbhEloqIuLJ2ZwMs9YI=";
   };
 
+  nativeBuildInputs = [
+    setuptools
+  ];
+
   propagatedBuildInputs = [
+    deprecated
     google-api-core
     google-cloud-core
     grpc-google-iam-v1