summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2026-08-04 21:05:20 +0200
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-08-08 23:02:33 +0100
commit9b87bc947c111283a779d5537669fef783b6d7ad (patch)
tree1ccda42923190431b188c7afcd07e00958db08e0
parent32bc206a147aeee1255848e49c9d9daecbfe0e4e (diff)
gnu: python-wsgiprox: Fix build.
* gnu/packages/python-web.scm (python-wsgiprox)[propagated-inputs]: Add missing python-six. Relates-to: guix/guix!10394 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
-rw-r--r--gnu/packages/python-web.scm5
1 files changed, 4 insertions, 1 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index a147f060f6a..af2915a5262 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -11020,7 +11020,10 @@ Plus all the standard features of requests:
11020 (("--doctest-module") 11020 (("--doctest-module")
11021 "--doctest-modules"))))))) 11021 "--doctest-modules")))))))
11022 (propagated-inputs 11022 (propagated-inputs
11023 (list python-certauth python-gevent python-websocket-client)) 11023 (list python-certauth
11024 python-gevent
11025 python-six
11026 python-websocket-client))
11024 (native-inputs 11027 (native-inputs
11025 (list python-mock python-waitress python-setuptools)) 11028 (list python-mock python-waitress python-setuptools))
11026 (home-page "https://github.com/webrecorder/wsgiprox") 11029 (home-page "https://github.com/webrecorder/wsgiprox")