From a144005c9312a4399e398adacf7cef4da6a57b58 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Fri, 31 Oct 2025 14:44:05 +0000 Subject: [PATCH] gnu: python-rangehttpserver: Fix tests. * gnu/packages/python-web.scm (python-rangehttpserver)[native-inputs]: Remove python-coverage, python-coveralls, and python-wheel; add python-requests. Change-Id: I6f5f8309843a17c00efbe7d8bebf0d0e3a9ebb57 --- gnu/packages/python-web.scm | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index 9b5aba984954f995c4b06967c76922fd49e5f130..5ef3de2334cac655f1465267cff9abf34288146a 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -10497,14 +10497,16 @@ based on filters.") (origin (method git-fetch) (uri (git-reference - (url "https://github.com/danvk/RangeHTTPServer") - (commit version))) + (url "https://github.com/danvk/RangeHTTPServer") + (commit version))) (file-name (git-file-name name version)) (sha256 (base32 "1dx533fsbq1mbz3by7qkm5bh2c253nwvm8214pqbwbfq07kqkwf2")))) (build-system pyproject-build-system) - (native-inputs (list python-coverage python-coveralls python-pytest - python-setuptools python-wheel)) + (native-inputs + (list python-pytest + python-requests + python-setuptools)) (home-page "https://github.com/danvk/RangeHTTPServer") (synopsis "SimpleHTTPServer with support for range requests") (description