diff options
author | John Kehayias <john.kehayias@protonmail.com> | 2024-12-20 22:53:29 -0500 |
---|---|---|
committer | John Kehayias <john.kehayias@protonmail.com> | 2024-12-20 22:53:29 -0500 |
commit | cf3f3dc056fcc91156ce5117dffd247d229003ba (patch) | |
tree | fa071490c1671885d70a10e2e7ab4a4efb70aefa /gnu/packages | |
parent | 4eaeff997907bc1b67884a6dc087756a50f175e2 (diff) | |
download | guix-cf3f3dc056fcc91156ce5117dffd247d229003ba.tar.gz guix-cf3f3dc056fcc91156ce5117dffd247d229003ba.zip |
gnu: python-tldr: Fix build.
* gnu/packages/python-xyz.scm (python-tldr)[native-inputs]: Add
python-setuptools and python-wheel.
Change-Id: Ie4891c4409e4b985ef5d7e57f38f308296abcdc0
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/python-xyz.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 0a17ecda3f..615dcc0b13 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -28890,7 +28890,9 @@ Public Suffix List's private domains as well.") (native-inputs (list python-pytest python-pytest-runner - python-sphinx-argparse)) + python-setuptools + python-sphinx-argparse + python-wheel)) (propagated-inputs (list python-colorama python-termcolor |