guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit 6a45aa4247f07a6e1afa1f6f351785f0b40b2484
Author: Nicolas Graves <[email protected]>
AuthorDate: Tue Oct 28 23:20:22 2025 +0100
gnu: python-waitress: Remove python-pytest-cov input.
* gnu/packages/python-web.scm (python-waitress)
[native-inputs]: Remove python-coverage, python-pytest-cov,
python-wheel.
Signed-off-by: Sharlatan Hellseher <[email protected]>
---
gnu/packages/python-web.scm | 10 ++++------
1 file changed, 4 insertions(+), 6 deletions(-)
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 7e6296341d..cd8b72d1f0 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -4792,12 +4792,10 @@ desired
"07y3xyx2006f2ni5d55byh3y7w4kcg9xww7vmfjasi0cmzralak8"))))
(build-system pyproject-build-system)
(arguments
- ;; https://github.com/Pylons/waitress/issues/443
- (list #:test-flags #~(list "-k" "not test_service_port")))
- (native-inputs
- (list python-pytest
- python-pytest-cov
- python-setuptools))
+ (list
+ ;; https://github.com/Pylons/waitress/issues/443
+ #:test-flags #~(list "-k" "not test_service_port")))
+ (native-inputs (list python-pytest python-setuptools))
(home-page "https://github.com/Pylons/waitress")
(synopsis "Waitress WSGI server")
(description