guix_mirror_bot pushed a commit to branch master
in repository guix.

commit d7e7632f57fd6485bb5888a1d6c06f27b034c334
Author: Nicolas Graves <[email protected]>
AuthorDate: Sun Dec 21 16:23:36 2025 +0100

    gnu: Add python-proton-keyring-linux.
    
    * gnu/packages/vpn.scm (python-proton-keyring-linux): New variable.
    
    Change-Id: Ic6d063d4aa05012c027a3217c1cf97e574721a58
    Signed-off-by: Sharlatan Hellseher <[email protected]>
---
 gnu/packages/vpn.scm | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gnu/packages/vpn.scm b/gnu/packages/vpn.scm
index d75e57b3bf..a16b8fb8b6 100644
--- a/gnu/packages/vpn.scm
+++ b/gnu/packages/vpn.scm
@@ -949,6 +949,33 @@ VPN.  The gratis tier offers unlimited bandwidth for up to 
10 devices.")
 packages.")
     (license license:gpl3+)))
 
+(define-public python-proton-keyring-linux
+  (package
+    (name "python-proton-keyring-linux")
+    (version "0.2.1")
+    (home-page "https://github.com/ProtonVPN/python-proton-keyring-linux";)
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+              (url home-page)
+              (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0a2q10z44x75fvz6rmhki0vn6500v0ybi50hbhikhkpfr3a5vsbm"))))
+    (build-system pyproject-build-system)
+    (native-inputs
+     (list python-pytest
+           python-pytest-cov
+           python-setuptools))
+    (propagated-inputs
+     (list python-keyring
+           python-proton-core))
+    (synopsis "Proton keyring plugin")
+    (description
+     "This package provides a keyring plugin for Proton technologies.")
+    (license license:gpl3+)))
+
 (define-public tinc
   (package
     (name "tinc")

Reply via email to