guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit 53617d73696611c95bb9f86aace1c33eaf0ae21c
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Wed Jun 10 21:42:40 2026 +0100
gnu: python-mistune: Update to 3.2.1.
* gnu/packages/python-xyz.scm (python-mistune): Update to 3.2.1.
[source]: Switch to git-fetch.
[native-inputs]: Remove python-wheel.
Change-Id: If30c4955fc7097af359a078114ff2b20420b5e0d
---
gnu/packages/python-xyz.scm | 18 ++++++++++--------
1 file changed, 10 insertions(+), 8 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index ee0445e9d5..0152a5395d 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -17710,22 +17710,24 @@ It also removes useless @code{pass} statements.")
(define-public python-mistune
(package
(name "python-mistune")
- (version "3.1.3")
+ (version "3.2.1")
(source
(origin
- (method url-fetch)
- (uri (pypi-uri "mistune" version))
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/lepture/mistune")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
(sha256
- (base32 "1802kx9hdbqmbd9acxx4dx6wn77q7mfz5y32psvfqarbg0hmq0x7"))))
+ (base32 "1zcfky6rr860mdbjxs1h0lhla39g8s3048xdnb24y0lnyj3h80gh"))))
(build-system pyproject-build-system)
(native-inputs
(list python-pytest
- python-setuptools
- python-wheel))
+ python-setuptools))
(home-page "https://github.com/lepture/mistune")
(synopsis "Markdown parser in pure Python")
- (description "This package provides a fast markdown parser in pure
-Python.")
+ (description
+ "This package provides a fast markdown parser in pure Python.")
(license license:bsd-3)))
(define-public python-markdown