guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit fea4d7a9132b3ac6c706b657e135e9851e261132
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Mon Jun 1 16:14:54 2026 +0100
gnu: python-markdown: Update to 3.10.2.
* gnu/packages/python-xyz.scm (python-markdown): Update to 3.10.2.
[soruce]: Switch to git-fetch.
Change-Id: I7e3f2fd691b4516edf20b9976f4295d48eae1290
---
gnu/packages/python-xyz.scm | 12 +++++++-----
1 file changed, 7 insertions(+), 5 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 982ab18beb..5e7f6175a8 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -17722,14 +17722,16 @@ Python.")
(define-public python-markdown
(package
(name "python-markdown")
- (version "3.10")
+ (version "3.10.2")
(source
(origin
- (method url-fetch)
- (uri (pypi-uri "markdown" version))
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/Python-Markdown/markdown")
+ (commit version)))
+ (file-name (git-file-name name version))
(sha256
- (base32
- "03lcnvr39pmfiids6jdr1iwwr0hg62m0zf7g5arvdcm4597js1ip"))))
+ (base32 "1i7hn91zhg5blykvsdzr1hq00p8xqysdh1l73iypx9pd2pdvk7w9"))))
(build-system pyproject-build-system)
(native-inputs
(list python-pyyaml