diff options
author | Arun Isaac | 2024-12-25 23:22:56 +0000 |
---|---|---|
committer | Arun Isaac | 2024-12-25 23:22:56 +0000 |
commit | bcb3e2353b9f6b5ac7bc89d639e630c12049fc42 (patch) | |
tree | 27a1d973899a653258b1d8d15f5664dbe2215229 | |
parent | 4dac197c37a50923f4bdb21a5a2975b9ae8325ce (diff) | |
download | guix-forge-bcb3e2353b9f6b5ac7bc89d639e630c12049fc42.tar.gz guix-forge-bcb3e2353b9f6b5ac7bc89d639e630c12049fc42.tar.lz guix-forge-bcb3e2353b9f6b5ac7bc89d639e630c12049fc42.zip |
Changes to pyproject-build-system require packages to depend
explicitly on python-setuptools and python-wheel.
* guix/forge/klaus.scm (python-klaus)[native-inputs]: Add
python-setuptools and python-wheel.
-rw-r--r-- | guix/forge/klaus.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/guix/forge/klaus.scm b/guix/forge/klaus.scm index 23c554f..6ffb23c 100644 --- a/guix/forge/klaus.scm +++ b/guix/forge/klaus.scm @@ -94,7 +94,9 @@ routes using HTTP Digest Authentication.") ;; https://github.com/jonashaag/klaus/issues/322 (list git-without-safe-directory-check)) (native-inputs - (list python-pytest)) + (list python-pytest + python-setuptools + python-wheel)) (propagated-inputs (list python-dulwich python-flask python-httpauth python-humanize python-pygments python-werkzeug)) |