From 50188c47ae98c9f2c5c25642fcc9b40fd559a7a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Wed, 29 Nov 2023 11:42:47 -0800 Subject: [PATCH] python311Packages.keyrings-google-artifactregistry-auth: 1.1.1 -> 1.1.2 Changelog: https://github.com/GoogleCloudPlatform/artifact-registry-python-tools/blob/main/HISTORY.md --- .../default.nix | 12 ++++++++++-- 1 file 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 82938b33f27a..b9204cbdabe7 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;