aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRicardo Wurmus <rekado@elephly.net>2024-12-17 12:36:58 +0100
committerRicardo Wurmus <rekado@elephly.net>2025-01-20 21:37:23 +0100
commit7548058ae4615af8e5ffb2e95a4572ec4bbfda54 (patch)
treedc3e79ccaf84a3021cb3bae0415b0814641a1236
parent64c7d93184e1cf779e926c484c1550a213244ca9 (diff)
downloadguix-7548058ae4615af8e5ffb2e95a4572ec4bbfda54.tar.gz
guix-7548058ae4615af8e5ffb2e95a4572ec4bbfda54.zip
gnu: python-waitress: Update to 3.0.2.
* gnu/packages/python-xyz.scm (python-waitress): Update to 3.0.2. [native-inputs]: Add python-coverage. Change-Id: I6d0b78afe6e3ab371473f26db144586c0d97abba
-rw-r--r--gnu/packages/python-xyz.scm10
1 files changed, 4 insertions, 6 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 2f5a0d1eaa..8742916200 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -20397,23 +20397,21 @@ templates into Python modules.")
(define-public python-waitress
(package
(name "python-waitress")
- (version "3.0.0")
+ (version "3.0.2")
(source
(origin
(method url-fetch)
(uri (pypi-uri "waitress" version))
(sha256
(base32
- "18dq4bibsv6cfhv6a3b16w2xwycxqkkiwbb0vpcwsd21n1ws8p80"))))
+ "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
- python-wheel))
+ (list python-coverage python-pytest python-pytest-cov
+ python-setuptools python-wheel))
(home-page "https://github.com/Pylons/waitress")
(synopsis "Waitress WSGI server")
(description