guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 2817daf5187b41739cc2aafa452e48ac18a92e8a
Author: Nicolas Graves <[email protected]>
AuthorDate: Fri Nov 21 21:55:38 2025 +0100
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 <[email protected]>
---
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 e9e7c4bbec..6d51f843e5 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