summaryrefslogtreecommitdiff
path: root/gnu/packages/python-xyz.scm
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2025-12-25 16:37:05 +0100
committerRutherther <rutherther@ditigal.xyz>2026-01-25 21:23:05 +0100
commit18b7f23ef3a671dbf207677353ad2415578853af (patch)
treec70411b84df3db337ea0b1cf0a93b5357d8971d9 /gnu/packages/python-xyz.scm
parentc635555165b1b54e76b5e9d9033ebcb9cc0db922 (diff)
gnu: python-pymd4c: Update to 1.3.0.
* gnu/packages/python-xyz.scm (python-pymd4c): Update to 1.3.0. [arguments]<#:tests?, #:test-flags>: Enable tests. [native-inputs]: Add python-pytest. Change-Id: I80c0cfcc2414bdf6b773d06097e103d8fa4b8724 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com> Signed-off-by: Rutherther <rutherther@ditigal.xyz>
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r--gnu/packages/python-xyz.scm9
1 files changed, 5 insertions, 4 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 2b1c20ad80e..4a2851ea2e7 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -4652,7 +4652,7 @@ state changes.")
(define-public python-pymd4c
(package
(name "python-pymd4c")
- (version "1.1.2")
+ (version "1.3.0")
(source
(origin
(method git-fetch)
@@ -4661,11 +4661,12 @@ state changes.")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
- (base32 "0wr2xg8iqzv3z4m2bknr0pjf3gknzj932li0yy9fmja7mvrawlhw"))))
+ (base32 "1pv8k2nfxnlwgmx13rl5vq9v64s564skpk0qnw41c2rhn13rxl4f"))))
(build-system pyproject-build-system)
- (arguments (list #:tests? #f)) ; No tests.
+ (arguments (list #:test-flags #~(list "test")))
(inputs (list md4c))
- (native-inputs (list pkg-config python-pkgconfig python-setuptools))
+ (native-inputs
+ (list pkg-config python-pkgconfig python-pytest python-setuptools))
(home-page "https://github.com/dominickpastore/pymd4c")
(synopsis "Python bindings for MD4C")
(description