summaryrefslogtreecommitdiff
path: root/gnu/packages/markup.scm
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/packages/markup.scm')
-rw-r--r--gnu/packages/markup.scm17
1 files changed, 7 insertions, 10 deletions
diff --git a/gnu/packages/markup.scm b/gnu/packages/markup.scm
index a85b695883..ac25094fb6 100644
--- a/gnu/packages/markup.scm
+++ b/gnu/packages/markup.scm
@@ -402,20 +402,20 @@ implementation.
(define-public python-cmarkgfm
(package
(name "python-cmarkgfm")
- (version "2022.10.27")
+ (version "2024.11.20")
(source (origin
(method url-fetch)
(uri (pypi-uri "cmarkgfm" version))
(sha256
(base32
- "16875bazqd7p7qiky343w0fzasqziyvf72nipyh1r47a2rvsrnck"))
+ "0siwyyfgp7v5vw6xd4zy2cph6dp9f3c5xvyd2draba3m37v1rl2x"))
(modules '((guix build utils)))
(snippet
'(begin
;; Delete bundled cmark and generated headers.
(for-each delete-file-recursively
'("third_party/cmark" "generated"))))))
- (build-system python-build-system)
+ (build-system pyproject-build-system)
(arguments
(list #:phases
#~(modify-phases %standard-phases
@@ -435,11 +435,8 @@ implementation.
(install-file file "generated/unix/"))
(cons version.h
(find-files (dirname version.h)
- "_export\\.h$"))))))
- (replace 'check
- (lambda* (#:key tests? #:allow-other-keys)
- (when tests? (invoke "pytest" "-vv" "tests")))))))
- (native-inputs (list python-pytest))
+ "_export\\.h$")))))))))
+ (native-inputs (list python-pytest python-setuptools))
(inputs (list cmark-gfm))
(propagated-inputs (list python-cffi))
(home-page "https://github.com/theacodes/cmarkgfm")
@@ -474,7 +471,7 @@ convert HTML to Markdown.")
(define-public cmark
(package
(name "cmark")
- (version "0.31.0")
+ (version "0.31.1")
(source (origin
(method git-fetch)
(uri (git-reference
@@ -483,7 +480,7 @@ convert HTML to Markdown.")
(file-name (git-file-name name version))
(sha256
(base32
- "0llj68l9rxdhral0zyv0bz6yzqsxgq8d3730082sl3kx78lsq5qq"))))
+ "029x6rjlyxs50dxppaqk6lqzyy58hl0laqalmgiqr3m363pz14pq"))))
(build-system cmake-build-system)
(native-inputs (list python))
(synopsis "CommonMark Markdown reference implementation")