From efc26826400762207cde9f23802cfe75a737963c Mon Sep 17 00:00:00 2001 From: jgart Date: Mon, 22 Jul 2024 17:45:26 -0500 Subject: gnu: python-waitress: Update to 3.0.0. * gnu/packages/python-xyz.scm (python-waitress): Update to 3.0.0. [build-system]: Use pyproject-build-system. [arguments]: Disable failing test. * gnu/packages/patches/python-waitress-fix-tests.patch: Delete no longer needed patch. * gnu/local.mk: Delete patch line. Change-Id: I5397649e30098627de8c24f6afa2b74413d3446a --- gnu/packages/python-xyz.scm | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) (limited to 'gnu/packages/python-xyz.scm') diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index fcf01f3d04..d1b3882cd5 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -19254,16 +19254,19 @@ templates into Python modules.") (define-public python-waitress (package (name "python-waitress") - (version "1.1.0") + (version "3.0.0") (source (origin (method url-fetch) (uri (pypi-uri "waitress" version)) - (patches (search-patches "python-waitress-fix-tests.patch")) (sha256 (base32 - "1a85gyji0kajc3p0s1pwwfm06w4wfxjkvvl4rnrz3h164kbd6g6k")))) - (build-system python-build-system) + "18dq4bibsv6cfhv6a3b16w2xwycxqkkiwbb0vpcwsd21n1ws8p80")))) + (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)) (home-page "https://github.com/Pylons/waitress") (synopsis "Waitress WSGI server") (description "Waitress is meant to be a production-quality pure-Python WSGI -- cgit v1.2.3