diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-11-22 16:08:42 +0000 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-11-22 16:10:12 +0000 |
| commit | 80697353a8a7983b70a8c246434e5861ce03d206 (patch) | |
| tree | 92bbad959243c3083993b0e3c54bfe2a5a834047 /gnu/packages/textutils.scm | |
| parent | b353635cbec4bbf3ad9ba487355f344be4089e9b (diff) | |
gnu: pandoc-include: Update to 1.4.3.
* gnu/packages/textutils.scm (pandoc-include): Update to 1.4.3.
[source]: Switch to git-fetch.
[build-system]: Switch to pyproject-build-system.
[arguments] <tests?>: Disable broken tests.
[inputs]: Add python-lxml, python-natsort, and python-panflute.
[propagated-inputs]: Remove python-natsort and python-panflute.
[native-inputs]: Add python-setuptools.
Change-Id: I166592371805b9005825711e66be03a2ca302cf7
Diffstat (limited to 'gnu/packages/textutils.scm')
| -rw-r--r-- | gnu/packages/textutils.scm | 30 |
1 files changed, 21 insertions, 9 deletions
diff --git a/gnu/packages/textutils.scm b/gnu/packages/textutils.scm index 6b98f86cf1a..5523c76cd3f 100644 --- a/gnu/packages/textutils.scm +++ b/gnu/packages/textutils.scm | |||
| @@ -1976,15 +1976,27 @@ Expressions, and being faster to type than grep.") | |||
| 1976 | (define-public pandoc-include | 1976 | (define-public pandoc-include |
| 1977 | (package | 1977 | (package |
| 1978 | (name "pandoc-include") | 1978 | (name "pandoc-include") |
| 1979 | (version "1.2.0") | 1979 | (version "1.4.3") |
| 1980 | (source (origin | 1980 | (source |
| 1981 | (method url-fetch) | 1981 | (origin |
| 1982 | (uri (pypi-uri "pandoc-include" version)) | 1982 | (method git-fetch) |
| 1983 | (sha256 | 1983 | (uri (git-reference |
| 1984 | (base32 | 1984 | (url "https://github.com/DCsunset/pandoc-include") |
| 1985 | "01nrbzs85mrd7jcflicsz0bmfnzi6wsy0ii262xl01zsabqd7n91")))) | 1985 | (commit (string-append "v" version)))) |
| 1986 | (build-system python-build-system) | 1986 | (file-name (git-file-name name version)) |
| 1987 | (propagated-inputs (list python-natsort python-panflute)) | 1987 | (sha256 |
| 1988 | (base32 "1db7fhdvhl3jnzwbi5s76jnlgkf0ifw9ngfv63dij4y21g5lhmzj")))) | ||
| 1989 | (build-system pyproject-build-system) | ||
| 1990 | (arguments | ||
| 1991 | ;; XXX: Test can be run with "test/run.py" but fail with error: | ||
| 1992 | ;; json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0) | ||
| 1993 | (list #:tests? #f)) | ||
| 1994 | (native-inputs | ||
| 1995 | (list python-setuptools)) | ||
| 1996 | (inputs | ||
| 1997 | (list python-lxml | ||
| 1998 | python-natsort | ||
| 1999 | python-panflute)) | ||
| 1988 | (home-page "https://github.com/DCsunset/pandoc-include") | 2000 | (home-page "https://github.com/DCsunset/pandoc-include") |
| 1989 | (synopsis "Pandoc filter to allow file and header includes") | 2001 | (synopsis "Pandoc filter to allow file and header includes") |
| 1990 | (description "@code{pandoc-include} extends Pandoc to support: | 2002 | (description "@code{pandoc-include} extends Pandoc to support: |
