diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-08-09 15:28:11 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-09-25 09:36:02 +0100 |
| commit | cb5e1b3a380e60af2424f0b2899ace3afa871ccf (patch) | |
| tree | a59ea68ba9cd11e928dfcf1c0cbec5723a309bfe /gnu/packages/textutils.scm | |
| parent | 16bdf22222424ec2d6e21ef49887bf4f664484d7 (diff) | |
gnu: python-pandocfilters: Update to 1.5.1.
* gnu/packages/textutils.scm (python-pandocfilters): Update to 1.5.1.
[build-system]: Use pyproject.
[arguments] <tests?>: Disable as requiring Pandoc in PATH.
[native-inputs]: Add python-setuptools.
Change-Id: I5b6560b67f4f76b7b9a40bf8a87a5a6c34d7e09e
Diffstat (limited to 'gnu/packages/textutils.scm')
| -rw-r--r-- | gnu/packages/textutils.scm | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/gnu/packages/textutils.scm b/gnu/packages/textutils.scm index 4dcc19f3b35..cb983fef43e 100644 --- a/gnu/packages/textutils.scm +++ b/gnu/packages/textutils.scm @@ -1622,14 +1622,18 @@ such as ISO-2022-JP, Shift_JIS, EUC-JP, UTF-8, UTF-16 or UTF-32.") (define-public python-pandocfilters (package (name "python-pandocfilters") - (version "1.5.0") + (version "1.5.1") (source (origin (method url-fetch) (uri (pypi-uri "pandocfilters" version)) (sha256 - (base32 "0f3sb8q85dbwliv46cc1yvpy4r00qp4by5x8751kn8vx6c1rarqb")))) - (build-system python-build-system) + (base32 "17lknixjja23jczlv8afgfky94m4gwl7wc36iczw1sz4brallaq0")))) + (build-system pyproject-build-system) + (arguments + (list #:tests? #f)) ;require pandoc to run tests + (native-inputs + (list python-setuptools)) (home-page "https://github.com/jgm/pandocfilters") (synopsis "Python module for writing Pandoc filters") (description "Pandoc is a powerful utility to transform various |
