summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-07-17 21:27:47 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-09-25 09:35:42 +0100
commitb6827b3dd616753ea32b93e297d1a94173a98b13 (patch)
tree0ab5cc0b6dd94a525e00910b22f04b435a88b67a
parent22aadcc1fea252916d7078c312f33273af3568c2 (diff)
gnu: python-markdown: Update to 3.8.2.
* gnu/packages/python-xyz.scm (python-markdown): Update to 3.8.2. [build-system]: Use pyproject. [native-inputs]: Remove python-nose; add python-setuptools. Change-Id: I40086d36114b667f637d0725d9a315870188fc0b
-rw-r--r--gnu/packages/python-xyz.scm11
1 files changed, 6 insertions, 5 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index f5a9e581f4..86506f7382 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -16907,17 +16907,18 @@ Python.")
(define-public python-markdown
(package
(name "python-markdown")
- (version "3.3.4")
+ (version "3.8.2")
(source
(origin
(method url-fetch)
- (uri (pypi-uri "Markdown" version))
+ (uri (pypi-uri "markdown" version))
(sha256
(base32
- "0jbs73nincha8fkfxx267sfxac6pl0ckszjbqbb8gk4dhs8v9d9i"))))
- (build-system python-build-system)
+ "0ibw4didlgfffpzc807rak96df3mwqijbrhw8dkpzqhjvmq9lyr4"))))
+ (build-system pyproject-build-system)
(native-inputs
- (list python-nose python-pyyaml))
+ (list python-pyyaml
+ python-setuptools))
(home-page "https://python-markdown.github.io/")
(synopsis "Python implementation of Markdown")
(description