python311Packages.keyrings-google-artifactregistry-auth: 1.1.1 -> 1.1.2

Changelog: https://github.com/GoogleCloudPlatform/artifact-registry-python-tools/blob/main/HISTORY.md
This commit is contained in:
Robert Schütz 2023-11-29 11:42:47 -08:00
parent 46e11ae73d
commit 50188c47ae

View File

@ -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;