summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2026-05-10 21:29:38 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-05-18 14:37:02 +0100
commitcfc7bb69bd4a89b3802a3fe69fe1614c38ca6ce2 (patch)
tree2f511178663045951bcf4d200ffb4ca9d8907fcd
parentc3c6b2ef486066cc7e147b7ac5245ff831ab6938 (diff)
gnu: python-keyring: Update to 25.7.0.
* gnu/packages/python-crypto.scm (python-keyring): Update to 25.7.0. [source]: Switch to git-fetch. [arguments]: Drop all. [propagated-inputs]: Add python-jaraco-context, python-jaraco-functools, and python-jeepney. [native-inputs]: Remove python-toml and python-wheel; add python-pyfakefs. Change-Id: I1bea9fdf8ea8c2c1b7abef13c4b1814e0ea15496
-rw-r--r--gnu/packages/python-crypto.scm32
1 files changed, 14 insertions, 18 deletions
diff --git a/gnu/packages/python-crypto.scm b/gnu/packages/python-crypto.scm
index 6a8e94153a..93a50d033a 100644
--- a/gnu/packages/python-crypto.scm
+++ b/gnu/packages/python-crypto.scm
@@ -330,32 +330,27 @@ do what is needed for client/server Kerberos authentication based on
(define-public python-keyring
(package
(name "python-keyring")
- (version "23.9.3")
+ (version "25.7.0")
(source
(origin
- (method url-fetch)
- (uri (pypi-uri "keyring" version))
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/jaraco/keyring")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
(sha256
- (base32
- "19f4jpsxng9sjfqi8ww5hgg196r2zh1zb8g71wjr1xa27kc1vc39"))))
+ (base32 "116nkhnldhgqd5nz0wf5zfjnkmlrpwj47pdd8p4r1zrizkr3dnxz"))))
(build-system pyproject-build-system)
- (arguments
- (list
- #:phases
- #~(modify-phases %standard-phases
- (add-before 'check 'workaround-test-failure
- (lambda _
- ;; Workaround a failure in the test_entry_point test (see:
- ;; https://github.com/jaraco/keyring/issues/526).
- (delete-file-recursively "keyring.egg-info"))))))
(native-inputs
- (list python-toml
+ (list python-pyfakefs
python-pytest
python-setuptools
- python-setuptools-scm
- python-wheel))
+ python-setuptools-scm))
(propagated-inputs
(list python-jaraco-classes
+ python-jaraco-context
+ python-jaraco-functools
+ python-jeepney
python-secretstorage))
(home-page "https://github.com/jaraco/keyring")
(synopsis "Store and access your passwords safely")
@@ -363,7 +358,8 @@ do what is needed for client/server Kerberos authentication based on
"The Python keyring lib provides a easy way to access the system keyring
service from python. It can be used in any application that needs safe
password storage.")
- ;; "MIT" and PSF dual license
+ ;; "MIT" and PSF dual license, see:
+ ;; <https://github.com/jaraco/keyring/issues/263>.
(license license:x11)))
(define-public python-keyrings-alt