From 5f8ef67529d5290ac48d0137703449d22939e8cc Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Tue, 28 Oct 2025 11:49:27 +0000 Subject: [PATCH] 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 --- gnu/packages/python-xyz.scm | 27 +++++++++++++++++++++++++++ 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 2d63f7e55f9ba50238e5dd205750f461a78305fc..d72097cccf924f7ad467463e550032863eb5a4b3 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -153,6 +153,7 @@ ;;; Copyright © 2023 Attila Lendvai ;;; Copyright © 2023, 2024 Troy Figiel ;;; Copyright © 2023 Adam Faiz +;;; Copyright © 2023 Wiktor Żelazny ;;; Copyright © 2024 Timothee Mathieu ;;; Copyright © 2024 Ian Eure ;;; Copyright © 2024 Adriel Dumas--Jondeau @@ -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 fdd76876d37100f8ca9f96dfd263107343147a34..0916fbfe20f9cb8b21348076b74d8738868a6c22 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")