From 2817daf5187b41739cc2aafa452e48ac18a92e8a Mon Sep 17 00:00:00 2001 From: Nicolas Graves Date: Fri, 21 Nov 2025 21:55:38 +0100 Subject: [PATCH] gnu: python-markuppy: Update to 1.18. * gnu/packages/python-xyz.scm (python-markuppy): Update to 1.18. [source]: Switch to git-fetch. [build-system]: Switch to pyproject-build-system. [native-inputs]: Add python-pytest, python-setuptools. [description]: Improve style. Change-Id: I8589af84425896b3f55a907df7f6fac493aefe60 Signed-off-by: Sharlatan Hellseher --- gnu/packages/python-xyz.scm | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index e9e7c4bbecf319e9beefa569e250d4a5c258942a..6d51f843e50e4d73de977dfb16279fd74764a717 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -33407,19 +33407,23 @@ Gateway. Braintree is a US-based payments service provider.") (define-public python-markuppy (package (name "python-markuppy") - (version "1.14") + (version "1.18") (source (origin - (method url-fetch) - (uri (pypi-uri "MarkupPy" version)) + (method git-fetch) + (uri (git-reference + (url "https://github.com/tylerbakke/MarkupPy") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) (sha256 - (base32 "0pqdmpxbr8iq22b4css2gz5z6s01ddpzyj25x27kgbs2lp0f5phs")))) - (build-system python-build-system) + (base32 "0rbxh7dzrqd1xrxbxxbyjslqfaxxyv17ppr9zcjig8yw631k0a51")))) + (build-system pyproject-build-system) + (native-inputs (list python-pytest python-setuptools)) (home-page "https://github.com/tylerbakke/MarkupPy") (synopsis "Pythonic HTML/XML generator") - (description "This Python module attempts to make it easier to generate -HTML/XML from a Python program in an intuitive, lightweight, customizable and -pythonic way.") + (description + "This Python module attempts to make it easier to generate HTML/XML from +a Python program in an customizable and pythonic way.") (license license:expat))) (define-public python-csb43