summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-12-05 16:33:37 +0000
committerRutherther <rutherther@ditigal.xyz>2026-01-25 21:18:34 +0100
commit4c16c28f7475ee29fe1cd0f3e915f28e93eb1cdd (patch)
treef480020d03d00ad443f3016680b04baafa1bce8d
parentd32d3fbd492436cb5a873217415cded69ed5ce6c (diff)
gnu: python-guardpost: Update to 1.0.4.
* gnu/packages/python-web.scm (python-guardpost): Update to 1.0.4. [propagated-inputs]: Add python-cryptography, python-essentials, and python-pyjwt. [native-inputs]: Remove python-cryptography and python-pyjwt. Change-Id: Ia527c00ac1224ded076679e3971c43d7f3482540 Signed-off-by: Rutherther <rutherther@ditigal.xyz>
-rw-r--r--gnu/packages/python-web.scm14
1 files changed, 8 insertions, 6 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index dee782de521..e386323e65c 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -1135,7 +1135,7 @@ formats (PDF/XML/CSV).")
(define-public python-guardpost
(package
(name "python-guardpost")
- (version "1.0.3")
+ (version "1.0.4")
(source
(origin
(method git-fetch)
@@ -1144,7 +1144,7 @@ formats (PDF/XML/CSV).")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
- (base32 "1q09w953d4cjjvp8pp3kkkhw0y9kq2jgj6fihdz9np55pwxkfd15"))))
+ (base32 "1xsakqn36g2h1s5rnbaf1lasx1jn4skqhmb8kdl1k4pgxp5sczyy"))))
(build-system pyproject-build-system)
(arguments
(list
@@ -1152,14 +1152,16 @@ formats (PDF/XML/CSV).")
;; <https://github.com/Neoteroi/GuardPost/issues/18>.
#:test-flags '(list "--ignore=tests/test_jwts.py")))
(native-inputs
- (list python-cryptography
- python-flask
+ (list python-flask
python-hatchling
- python-pyjwt
python-pytest
python-pytest-asyncio))
(propagated-inputs
- (list python-rodi))
+ (list python-rodi
+ ;; [optional]
+ python-cryptography
+ python-essentials
+ python-pyjwt))
(home-page "https://github.com/Neoteroi/GuardPost/")
(synopsis
"Authentication and authorization framework for Python applications")