summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwrobell <wrobell@riseup.net>2025-06-21 23:43:06 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-08-17 00:57:39 +0100
commita09e2225c44ff8b47f3daee418362d3b935ca2a4 (patch)
treec535f6573fcd93cfed6bbe596b3196e0a164da93
parent1e47ef2c35680e375696ee9e597e083b68a17355 (diff)
gnu: python-markupsafe: Update to 3.0.2.
* gnu/packages/python-xyz.scm (python-markupsafe): Update to 3.0.2. [source]: Update project name (it is lowercase now). [build-system]: Use pyproject-build-system. [arguments]: Run pytest with default verbosity provided by the build system. [native-inputs]: Add python-setuptools and python-wheel. Change-Id: I76b03fd0c28bbfdd2e5f2260fd34cba0f39d08d9 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
-rw-r--r--gnu/packages/python-xyz.scm20
1 files changed, 6 insertions, 14 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index b66c117435..3fc18f2c3c 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -8057,24 +8057,16 @@ possible.")
(define-public python-markupsafe
(package
(name "python-markupsafe")
- (version "2.1.1")
+ (version "3.0.2")
(source
(origin
(method url-fetch)
- (uri (pypi-uri "MarkupSafe" version))
+ (uri (pypi-uri "markupsafe" version))
(sha256
- (base32
- "0jqxp5sfrc0byp6bk0gwdmildi4mck2gprp42afri3z4r5y1k4bz"))))
- (build-system python-build-system)
- (arguments
- `(#:phases (modify-phases %standard-phases
- (replace 'check
- (lambda* (#:key tests? #:allow-other-keys)
- (when tests?
- (invoke "pytest" "-vv")))))))
- (native-inputs
- (list python-pytest))
- (home-page "https://github.com/mitsuhiko/markupsafe")
+ (base32 "1w1b1a5pskpqhx1mb53rgpv9srplhrrkr4hsl67f8rq1z3nx6mgf"))))
+ (build-system pyproject-build-system)
+ (native-inputs (list python-pytest python-setuptools python-wheel))
+ (home-page "https://markupsafe.palletsprojects.com")
(synopsis "XML/HTML/XHTML markup safe string implementation for Python")
(description
"Markupsafe provides an XML/HTML/XHTML markup safe string implementation