This is an automated email from the git hooks/post-receive script.
guix_mirror_bot pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 1ffe9cf1f4 gnu: python-uritemplate: Update to 4.2.0.
1ffe9cf1f4 is described below
commit 1ffe9cf1f4629fa2f96449d63c57323812451012
Author: Aaron Covrig <[email protected]>
AuthorDate: Mon Dec 22 08:00:51 2025 -0500
gnu: python-uritemplate: Update to 4.2.0.
* gnu/packages/python-web.scm (python-uritemplate): Update to 4.2.0.
[build-system]: Switch to pyproject-build-system.
[native-inputs]: Add python-pytest and python-setuptools.
[home-page]: Update URL.
Change-Id: I29c8caa1055a11f2faa20f5c3ffd4be7e9297f14
Reviewed-by: Nguyễn Gia Phong <[email protected]>
Reviewed-by: Hugo Buddelmeijer <[email protected]>
Signed-off-by: Sharlatan Hellseher <[email protected]>
---
gnu/packages/python-web.scm | 10 ++++++----
1 file changed, 6 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 8522f5c74b..cfbb3c12ce 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -86,6 +86,7 @@
;;; Copyright © 2025 Hugo Buddelmeijer <[email protected]>
;;; Copyright © 2025 Artur Wroblewski <[email protected]>
;;; Copyright © 2025 Allan Adair <[email protected]>
+;;; Copyright © 2025 Aaron Covrig <[email protected]>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -8356,16 +8357,17 @@ authentication for Flask routes.")
(define-public python-uritemplate
(package
(name "python-uritemplate")
- (version "4.1.1")
+ (version "4.2.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "uritemplate" version))
(sha256
(base32
- "1w14a775d92mx9pdhb5zimifpfr2lfcn0vfdpjagcy9vbkyfsij3"))))
- (build-system python-build-system)
- (home-page "https://uritemplate.readthedocs.org")
+ "03lxxkk0kjn6z7z1f9hqvsaqfrny1qds7vi36f35b2c7h38jw328"))))
+ (build-system pyproject-build-system)
+ (native-inputs (list python-pytest python-setuptools))
+ (home-page "https://uritemplate.readthedocs.io/")
(synopsis "Library to deal with URI Templates")
(description "@code{uritemplate} provides Python library to deal with URI
Templates.")