guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit f3fe9ce5df32efb720287a2087d5645b7013238b
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sat May 30 15:12:12 2026 +0100
gnu: python-jinja2: Update to 3.1.6.
* gnu/packages/python-xyz.scm (python-jinja2): Update to 3.1.6.
[native-inputs]: Remove python-setuptools and python-wheel; add
python-flit-core and
python-trio.
Change-Id: I7985557bf9ca13d0297a18b0dff0d1ae15fc78d0
---
gnu/packages/python-xyz.scm | 19 +++++++++++++------
1 file changed, 13 insertions(+), 6 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 46ac3905de..c9d141159b 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -9978,16 +9978,23 @@ for Python.")
(define-public python-jinja2
(package
(name "python-jinja2")
- (version "3.1.2")
+ (version "3.1.6")
(source
(origin
- (method url-fetch)
- (uri (pypi-uri "Jinja2" version))
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/pallets/jinja")
+ (commit version)))
+ (file-name (git-file-name name version))
(sha256
- (base32 "0lp86yadzf8dph67f6g3yxmvnhrzzi863z58jmsrx2j059q1ld9i"))))
+ (base32 "01ds59a1cync34xq7s0q6f50k9nvn2n80zh62qa2a8vnr7fz5nlv"))))
(build-system pyproject-build-system)
- (native-inputs (list python-pytest python-setuptools python-wheel))
- (propagated-inputs (list python-markupsafe))
+ (native-inputs
+ (list python-flit-core
+ python-pytest
+ python-trio))
+ (propagated-inputs
+ (list python-markupsafe))
(home-page "https://jinja.palletsprojects.com/")
(synopsis "Python template engine")
(description