diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-08-09 15:21:58 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-09-25 09:35:55 +0100 |
| commit | 767d351abe3e698fc3c7acd4d5cd292b82621e8e (patch) | |
| tree | 7ffcc476130a6cf282840cc9a5d2b96210a7494f | |
| parent | eff7e1db41e59187f0a39da087ae061495c4d700 (diff) | |
gnu: python-panflute: Update to 2.3.1.
* gnu/packages/textutils.scm (python-panflute): Update to 2.3.1.
[build-system]: Use pyproject.
[arguments] <tests?>: Disable as requiring Pandoc in PATH.
[native-inputs]: Remove python-configparser, python-coverage,
python-flake8, python-pandocfilters, python-pytest, python-pytest-cov,
and python-requests; add python-setuptools.
Change-Id: I1914ed63535da1930f9161b1b7e2975e849fcd92
| -rw-r--r-- | gnu/packages/textutils.scm | 21 |
1 files changed, 10 insertions, 11 deletions
diff --git a/gnu/packages/textutils.scm b/gnu/packages/textutils.scm index f2b63c19c61..4dcc19f3b35 100644 --- a/gnu/packages/textutils.scm +++ b/gnu/packages/textutils.scm @@ -1922,22 +1922,21 @@ Expressions, and being faster to type than grep.") (define-public python-panflute (package (name "python-panflute") - (version "2.3.0") + (version "2.3.1") (source (origin (method url-fetch) (uri (pypi-uri "panflute" version)) (sha256 (base32 - "1jk5b2sp1h4drkjrg2ks77d0ca6j043n2myvacm77nfc93y9vzff")))) - (build-system python-build-system) - (propagated-inputs (list python-click python-pyyaml)) - (native-inputs (list python-configparser - python-coverage - python-flake8 - python-pandocfilters - python-pytest - python-pytest-cov - python-requests)) + "07wg5md93jcdkpiqljwr3p1xzvm6nf7vbiay0bp84fgg6hmd06sz")))) + (build-system pyproject-build-system) + (arguments + (list #:tests? #f)) ;require pandoc to run tests + (native-inputs + (list python-setuptools)) + (propagated-inputs + (list python-click + python-pyyaml)) (home-page "http://scorreia.com/software/panflute/") (synopsis "Pythonic Pandoc filters") (description |
