diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2025-01-27 17:24:08 +0100 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2025-04-16 11:46:10 +0200 |
commit | 4fbac2167e86359a195bdd299e028e84c9e5b6c7 (patch) | |
tree | d3fc632bba0a8ddd41adb5163619c36660f612e9 | |
parent | 64135bd53467a3036778b404540317b42c28e025 (diff) |
gnu: python-relatorio: Use pyproject-build-system.
* gnu/packages/python-xyz.scm (python-relatorio)[build-system]: Use
pyproject-build-system.
[native-inputs]: Add python-setuptools and python-wheel; move python-magic
from here...
[propagated-inputs]: ...to here.
[description]: Reformat.
Change-Id: Ie1bc69be70c37d283e6dbd5264e27479b8dca3fc
-rw-r--r-- | gnu/packages/python-xyz.scm | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 1fd7f5c7ee..4c48912c69 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -27016,16 +27016,15 @@ functionality removed from @code{packaging}.") (sha256 (base32 "09nhrz80dfm60nssbvjgz4czzy4yzfa8gxczcdlzbgcnnvm914vb")))) - (build-system python-build-system) + (build-system pyproject-build-system) (propagated-inputs - (list python-lxml python-genshi)) - (native-inputs - (list python-magic)) + (list python-lxml python-magic python-genshi)) + (native-inputs (list python-setuptools python-wheel)) (home-page "https://relatorio.tryton.org/") (synopsis "Templating library able to output ODT and PDF files") (description "Relatorio is a templating library which provides a way to - easily output ODT, ODS, PNG, SVG and several other kinds of files. Support - for more filetypes can be easily added by creating plugins for them.") +easily output ODT, ODS, PNG, SVG and several other kinds of files. Support +for more filetypes can be easily added by creating plugins for them.") (license license:gpl3+))) (define-public python-radon |