diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-09-05 12:42:54 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-09-25 09:35:34 +0100 |
| commit | 7b05b4a2c158b495e6acee4a99440a84d3a8f63f (patch) | |
| tree | 19ee68a94bb12f663d22a5ae0fd56b736d9f34b1 /gnu/packages/python-xyz.scm | |
| parent | 0fdca05c08a114df484472b4ff554cddff569dd1 (diff) | |
gnu: mallard-ducktype: Switch to pyproject.
* gnu/packages/python-xyz.scm (mallard-ducktype)[build-system]: Switch
to pyproject-build-system.
[native-inputs]: Add python-setuptools.
Change-Id: I86592f5332819b160f0f804a3495ef1b0491ff78
Diffstat (limited to 'gnu/packages/python-xyz.scm')
| -rw-r--r-- | gnu/packages/python-xyz.scm | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 6d7ae28e96..d1069ac37e 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -10002,6 +10002,9 @@ Markdown input files, and more. Pelican uses Jinja2 for templating and is very extensible.") (license license:agpl3+))) +;; XXX: Potential abandonware, no updates or fixes since 2019, consider to +;; find a replacement and re-allocate, see: +;; <https://codeberg.org/guix/guix/issues/1200>. (define-public mallard-ducktype (package (name "mallard-ducktype") @@ -10018,7 +10021,7 @@ and is very extensible.") (sha256 (base32 "1jk9bfz7g04ip78s03b0xak6d54rj4h9zpgadkziy1ji216g6y4c")))) - (build-system python-build-system) + (build-system pyproject-build-system) (arguments '(#:phases (modify-phases %standard-phases @@ -10026,6 +10029,7 @@ and is very extensible.") (lambda _ (with-directory-excursion "tests" (invoke "sh" "runtests"))))))) + (native-inputs (list python-setuptools)) (home-page "http://projectmallard.org") (synopsis "Convert Ducktype to Mallard documentation markup") (description |
