summaryrefslogtreecommitdiff
path: root/gnu/packages/python-web.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-10-09 12:08:23 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-10-09 12:08:23 +0100
commite544755b7acd7db0aa8b0e358064b013817fdd9b (patch)
treec453803c531166f5b4b20c78bb692eb748b93b10 /gnu/packages/python-web.scm
parent15de5aced0c9bcf73c41a97ade3b6d8c0fc455d6 (diff)
gnu: python-jwcrypto: Update to 1.5.6.
* gnu/packages/python-web.scm (python-jwcrypto): Update to 1.5.6. [native-inputs]: Remove python-wheel; add python-pytest. Change-Id: Ib473fedf27f67e3bc151aa30267141a806b6c1fc
Diffstat (limited to 'gnu/packages/python-web.scm')
-rw-r--r--gnu/packages/python-web.scm22
1 files changed, 13 insertions, 9 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 1c6bb7b0e6c..4f58f56e5d2 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -3140,16 +3140,20 @@ JWE, JWK, JWA, and JWT.")
(define-public python-jwcrypto
(package
(name "python-jwcrypto")
- (version "1.5.0")
- (source (origin
- (method url-fetch)
- (uri (pypi-uri "jwcrypto" version))
- (sha256
- (base32
- "138bh6x1yy0qpk63bxa7mxnd97gfdm1fkpwm8wrdz3g3z0fca79c"))))
+ (version "1.5.6")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "jwcrypto" version))
+ (sha256
+ (base32 "0fdhn5jrsdxqr1yr6rmh585q4j08z1aajn392vk1l20c59v8f6kp"))))
(build-system pyproject-build-system)
- (propagated-inputs (list python-cryptography python-deprecated))
- (native-inputs (list python-setuptools python-wheel))
+ (native-inputs
+ (list python-pytest
+ python-setuptools))
+ (propagated-inputs
+ (list python-cryptography
+ python-deprecated))
(home-page "https://github.com/latchset/jwcrypto")
(synopsis "Implementation of JOSE Web standards")
(description