2022-03-30 09:31:56 +00:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, google-auth
|
|
|
|
, keyring
|
|
|
|
, pluggy
|
|
|
|
, requests
|
|
|
|
, setuptools-scm
|
|
|
|
, toml
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "keyrings.google-artifactregistry-auth";
|
2022-09-09 14:08:57 +00:00
|
|
|
version = "1.1.1";
|
2022-03-30 09:31:56 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2023-03-15 16:39:30 +00:00
|
|
|
hash = "sha256-vrA3+/awws4R2BAxn9wYDKuIZdqioWsQnDr3MYL/5E0=";
|
2022-03-30 09:31:56 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
setuptools-scm
|
|
|
|
toml
|
|
|
|
];
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
google-auth
|
|
|
|
keyring
|
|
|
|
pluggy
|
|
|
|
requests
|
|
|
|
];
|
|
|
|
|
|
|
|
pythonImportsCheck = [
|
|
|
|
"keyrings.gauth"
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
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;
|
|
|
|
maintainers = with maintainers; [ lovesegfault ];
|
|
|
|
};
|
|
|
|
}
|