guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit 2e68a61e7dd777c352a690c7ae56ca2b4fabd0c8
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Fri Oct 31 14:32:42 2025 +0000
gnu: python-waitress: Reduce closure size.
* gnu/packages/python-web.scm (python-waitress)[native-inputs]: Remove
python-coverage and python-wheel.
Change-Id: Ic6136eb9a44b8ef97bf60796a401921f30bef55d
---
gnu/packages/python-web.scm | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 6ccacd43f6..ecda429b76 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -4462,8 +4462,9 @@ desired
;; https://github.com/Pylons/waitress/issues/443
(list #:test-flags #~(list "-k" "not test_service_port")))
(native-inputs
- (list python-coverage python-pytest python-pytest-cov
- python-setuptools python-wheel))
+ (list python-pytest
+ python-pytest-cov
+ python-setuptools))
(home-page "https://github.com/Pylons/waitress")
(synopsis "Waitress WSGI server")
(description