guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit e2a19e0d29c89298a06db5504a0a68a68bf37496
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sat May 30 14:48:54 2026 +0100
gnu: python-mako: Update to 1.3.12.
* gnu/packages/python-xyz.scm (python-mako): Update to 1.3.12.
[source]: Switch to git-fetch.
[native-inputs]: Remove python-wheel.
Change-Id: I0bffee84b2dba52037a837406df7e7aad32cf267
---
gnu/packages/python-xyz.scm | 15 +++++++++------
1 file changed, 9 insertions(+), 6 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 671f4c2669..f74c171020 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -21277,18 +21277,21 @@ Amazon Web Services (AWS) API.")
(define-public python-mako
(package
(name "python-mako")
- (version "1.3.10")
+ (version "1.3.12")
(source
(origin
- (method url-fetch)
- (uri (pypi-uri "mako" version))
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/sqlalchemy/mako")
+ (commit (string-append "rel_" (string-replace-substring
+ version "." "_")))))
+ (file-name (git-file-name name version))
(sha256
- (base32 "0a7ala6k7kn094k3g02b85xfkr20yk0w6a0acgjsfgsq75prlmwr"))))
+ (base32 "1cvx14yvsx13fnxbwjy4jh8yy87pa6lzfgqzkih4j6c8q0zjd0v0"))))
(build-system pyproject-build-system)
(native-inputs
(list python-pytest
- python-setuptools
- python-wheel))
+ python-setuptools))
(propagated-inputs
(list python-markupsafe))
(home-page "https://www.makotemplates.org/")