From 1ffe9cf1f4629fa2f96449d63c57323812451012 Mon Sep 17 00:00:00 2001 From: Aaron Covrig Date: Mon, 22 Dec 2025 08:00:51 -0500 Subject: [PATCH] gnu: python-uritemplate: Update to 4.2.0. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * 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 Reviewed-by: Hugo Buddelmeijer Signed-off-by: Sharlatan Hellseher --- 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 8522f5c74bf931397e776b80673a50784ea25b50..cfbb3c12ce36a9ecf4a8c417d241e20ce0628369 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -86,6 +86,7 @@ ;;; Copyright © 2025 Hugo Buddelmeijer ;;; Copyright © 2025 Artur Wroblewski ;;; Copyright © 2025 Allan Adair +;;; Copyright © 2025 Aaron Covrig ;;; ;;; 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.")