diff options
author | Ricardo Wurmus <[email protected]> | 2025-01-10 21:01:29 +0100 |
---|---|---|
committer | Ricardo Wurmus <[email protected]> | 2025-01-20 21:37:40 +0100 |
commit | 77ec444e542956d6de8b9d374569754710763814 (patch) | |
tree | 5c0cacd249a86615b9a98d8e1bf79bc2e40d67d4 /gnu/packages/python-xyz.scm | |
parent | 5762420f9c04fe3cdb2af09cbed74b7fdb92b032 (diff) |
gnu: python-term-background: Add missing input.
* gnu/packages/python-xyz.scm (python-term-background)[native-inputs]: Remove
python-pkginfo; add python-wheel.
Change-Id: I9720aaad30294c532e9dcebd9247320e22e59866
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r-- | gnu/packages/python-xyz.scm | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 451c52ee13..3627e62cbb 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -17855,13 +17855,18 @@ applications from a list of lists of strings. It supports multi-line rows.") (sha256 (base32 "0p674silrwc3jncncmdnj1lr6pl2q5qbx0xi3mzjq9sgcs5vmp4n")))) (arguments - `(#:phases - (modify-phases %standard-phases + (list + #:phases + '(modify-phases %standard-phases (add-after 'unpack 'fix-build - (lambda _ - (delete-file "setup.py")))))) + (lambda _ (delete-file "setup.py")))))) (build-system pyproject-build-system) - (native-inputs (list python-setuptools python-wrapper python-setuptools-scm python-pkginfo python-pytest)) ; TODO: Remove python-pkginfo + (native-inputs + (list python-pytest + python-setuptools + python-setuptools-scm + python-wrapper + python-wheel)) (home-page "http://github.com/rocky/shell-term-background") (synopsis "Determine if shell has a light or dark background") (description "This package determines if shell has a light or dark |