mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
python3Packages.keyrings-google-artifactregistry-auth: init at 1.0.0
This commit is contained in:
parent
c12cec8bc3
commit
24d9901b7c
@ -0,0 +1,44 @@
|
|||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, google-auth
|
||||||
|
, keyring
|
||||||
|
, pluggy
|
||||||
|
, requests
|
||||||
|
, setuptools-scm
|
||||||
|
, toml
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "keyrings.google-artifactregistry-auth";
|
||||||
|
version = "1.0.0";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "sha256-gvoX5SP0A39Ke0VRlplETJF8gIP+QzK6xNReRxM8UnA=";
|
||||||
|
};
|
||||||
|
|
||||||
|
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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -4462,6 +4462,8 @@ in {
|
|||||||
|
|
||||||
keyrings-cryptfile = callPackage ../development/python-modules/keyrings-cryptfile { };
|
keyrings-cryptfile = callPackage ../development/python-modules/keyrings-cryptfile { };
|
||||||
|
|
||||||
|
keyrings-google-artifactregistry-auth = callPackage ../development/python-modules/keyrings-google-artifactregistry-auth { };
|
||||||
|
|
||||||
keyrings-alt = callPackage ../development/python-modules/keyrings-alt { };
|
keyrings-alt = callPackage ../development/python-modules/keyrings-alt { };
|
||||||
|
|
||||||
keystone-engine = callPackage ../development/python-modules/keystone-engine { };
|
keystone-engine = callPackage ../development/python-modules/keystone-engine { };
|
||||||
|
Loading…
Reference in New Issue
Block a user