about summary refs log tree commit diff
diff options
context:
space:
mode:
authorRobert Schütz <nix@dotlambda.de>2023-11-29 22:55:20 -0800
committerGitHub <noreply@github.com>2023-11-29 22:55:20 -0800
commitc05d8bb3a0c2a4720b73f3ea95816aa874601911 (patch)
treeafc70a0dac149d9c898037196f78ed72e82f9e9b
parent7a36c932f8632944f27f932ccd808113158c2b60 (diff)
parent50188c47ae98c9f2c5c25642fcc9b40fd559a7a2 (diff)
Merge pull request #271017 from dotlambda/keyrings-google-artifactregistry-auth-1.1.2
python311Packages.keyrings-google-artifactregistry-auth: 1.1.1 -> 1.1.2
-rw-r--r--pkgs/development/python-modules/keyrings-google-artifactregistry-auth/default.nix12
1 files changed, 10 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/keyrings-google-artifactregistry-auth/default.nix b/pkgs/development/python-modules/keyrings-google-artifactregistry-auth/default.nix
index 82938b33f27aa..b9204cbdabe77 100644
--- a/pkgs/development/python-modules/keyrings-google-artifactregistry-auth/default.nix
+++ b/pkgs/development/python-modules/keyrings-google-artifactregistry-auth/default.nix
@@ -4,6 +4,7 @@
 , google-auth
 , keyring
 , pluggy
+, pythonOlder
 , requests
 , setuptools-scm
 , toml
@@ -11,11 +12,15 @@
 
 buildPythonPackage rec {
   pname = "keyrings.google-artifactregistry-auth";
-  version = "1.1.1";
+  version = "1.1.2";
+
+  disabled = pythonOlder "3.6";
+
+  pyproject = true;
 
   src = fetchPypi {
     inherit pname version;
-    hash = "sha256-vrA3+/awws4R2BAxn9wYDKuIZdqioWsQnDr3MYL/5E0=";
+    hash = "sha256-vWq7cnQNLf60pcA8OxBcb326FpyqKd7jlZaU8fAsd94=";
   };
 
   buildInputs = [
@@ -34,8 +39,11 @@ buildPythonPackage rec {
     "keyrings.gauth"
   ];
 
+  # upstream has no tests
+  doCheck = false;
 
   meta = with lib; {
+    changelog = "https://github.com/GoogleCloudPlatform/artifact-registry-python-tools/blob/main/HISTORY.md";
     description = "Python package which allows you to configure keyring to interact with Python repositories stored in Artifact Registry";
     homepage = "https://pypi.org/project/keyrings.google-artifactregistry-auth";
     license = licenses.asl20;