summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBernardo Meurer <bernardo@meurer.org>2022-03-17 22:59:41 -0700
committerGitHub <noreply@github.com>2022-03-17 22:59:41 -0700
commitb19c177b874f3f85388209ea4483197a9c3bfd57 (patch)
tree75a7f65716d9093017f3ffc26698faa3e7750a32
parentd468bc8524877b97faab506ecf2aaeb422f646d9 (diff)
parent24d9901b7c50721b3568f43aa07399bf002c76f6 (diff)
Merge pull request #164675 from lovesegfault/keyrings-google-artifactregistry-auth
python3Packages.keyrings-google-artifactregistry-auth: init at 1.0.0
-rw-r--r--pkgs/development/python-modules/keyrings-google-artifactregistry-auth/default.nix44
-rw-r--r--pkgs/top-level/python-packages.nix2
2 files changed, 46 insertions, 0 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
new file mode 100644
index 000000000000..d77dc444f80d
--- /dev/null
+++ b/pkgs/development/python-modules/keyrings-google-artifactregistry-auth/default.nix
@@ -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 ];
+ };
+}
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index a77639b027ea..64025d04ad9b 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -4464,6 +4464,8 @@ in {
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 { };
keystone-engine = callPackage ../development/python-modules/keystone-engine { };