guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit abea23686eb378819d37f64c31e35e1627643386
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Fri Oct 31 14:44:05 2025 +0000
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 9b5aba9849..5ef3de2334 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