guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit 5125e9f775605a7dbee8d32aff6a57682ecfdc12
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sun Jun 14 20:47:53 2026 +0100
gnu: python-mistletoe: Update to 1.5.1.
* gnu/packages/markup.scm (python-mistletoe): Update to 1.5.1.
[source]: Switch to git-fetch.
[arguments]: Drop all.
[propagated-inputs]: Add python-pygments.
[native-inputs]: Remove python-wheel.
Change-Id: Ib5c2eed10c55c69a8f7b172c1675c3eae313053c
---
gnu/packages/markup.scm | 19 ++++++++++---------
1 file changed, 10 insertions(+), 9 deletions(-)
diff --git a/gnu/packages/markup.scm b/gnu/packages/markup.scm
index 7cd036d472..d4c9cde908 100644
--- a/gnu/packages/markup.scm
+++ b/gnu/packages/markup.scm
@@ -700,22 +700,23 @@ one-click export to web browser.")
(define-public python-mistletoe
(package
(name "python-mistletoe")
- (version "1.3.0")
+ (version "1.5.1")
(source
(origin
- (method url-fetch)
- (uri (pypi-uri "mistletoe" version))
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/miyuchina/mistletoe")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
(sha256
- (base32 "1sfv79fway4iya9i3rmz1bkj12lhzgazd4n7kv8phi4vvn57h3mx"))))
+ (base32 "1r279m8c0rx2vm7bhnax0q5zfzz3yf44qn057wa9bqng3nz0ls47"))))
(build-system pyproject-build-system)
- (arguments
- ;; FileNotFoundError (not distributed in PyPI).
- (list #:test-flags #~(list "-k" "not test_main")))
(native-inputs
(list python-parameterized
python-pytest
- python-setuptools
- python-wheel))
+ python-setuptools))
+ (propagated-inputs
+ (list python-pygments))
(home-page "https://github.com/miyuchina/mistletoe")
(synopsis "Extensible Markdown parser in pure Python")
(description