diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-10-28 11:49:27 +0000 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-10-28 17:46:24 +0000 |
| commit | 5f8ef67529d5290ac48d0137703449d22939e8cc (patch) | |
| tree | 1b751bb1dcec878a37a5b005db0a3926b2610329 /gnu | |
| parent | 798e1e0c8e7b25cbd0982df98dde4344296d65ce (diff) | |
gnu: python-panflute: Move to python-xyz.
* gnu/packages/textutils.scm (python-panflute): Move from here ...
* gnu/packages/python-xyz.scm: ... to here.
Change-Id: I7d63724ac792057e6cc6d6c4d3d51a1b6441bbb3
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/python-xyz.scm | 27 | ||||
| -rw-r--r-- | gnu/packages/textutils.scm | 26 |
2 files changed, 27 insertions, 26 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 2d63f7e55f9..d72097cccf9 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -153,6 +153,7 @@ ;;; Copyright © 2023 Attila Lendvai <attila@lendvai.name> ;;; Copyright © 2023, 2024 Troy Figiel <troy@troyfigiel.com> ;;; Copyright © 2023 Adam Faiz <adam.faiz@disroot.org> +;;; Copyright © 2023 Wiktor Żelazny <wz@freeshell.de> ;;; Copyright © 2024 Timothee Mathieu <timothee.mathieu@inria.fr> ;;; Copyright © 2024 Ian Eure <ian@retrospec.tv> ;;; Copyright © 2024 Adriel Dumas--Jondeau <leirda@disroot.org> @@ -1401,6 +1402,32 @@ numbers like forty-second.") of Ordered Set.") (license license:expat))) +(define-public python-panflute + (package + (name "python-panflute") + (version "2.3.1") + (source + (origin + (method url-fetch) + (uri (pypi-uri "panflute" version)) + (sha256 + (base32 "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 + "Panflute is a Python package that makes Pandoc filters fun to write. +It is a pythonic alternative to John MacFarlane's pandocfilters, from which it +is heavily inspired.") + (license license:bsd-3))) + (define-public python-pastel (package (name "python-pastel") diff --git a/gnu/packages/textutils.scm b/gnu/packages/textutils.scm index fdd76876d37..0916fbfe20f 100644 --- a/gnu/packages/textutils.scm +++ b/gnu/packages/textutils.scm @@ -2004,32 +2004,6 @@ easily specify file types, match highlighting, Perl-Compatible Regular Expressions, and being faster to type than grep.") (license license:artistic2.0))) -(define-public python-panflute - (package - (name "python-panflute") - (version "2.3.1") - (source (origin - (method url-fetch) - (uri (pypi-uri "panflute" version)) - (sha256 - (base32 - "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 - "Panflute is a Python package that makes Pandoc filters fun to -write. It is a pythonic alternative to John MacFarlane's pandocfilters, from -which it is heavily inspired.") - (license license:bsd-3))) - (define-public pandoc-include (package (name "pandoc-include") |
