summaryrefslogtreecommitdiff
path: root/gnu/packages/python-web.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-10-31 14:44:05 +0000
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-11-20 01:06:40 +0000
commita144005c9312a4399e398adacf7cef4da6a57b58 (patch)
tree23f3661015653bf258dc1559bbd1b184a8248f50 /gnu/packages/python-web.scm
parent3be34f2e3c41e0c707cf540d9389dadc07e484ff (diff)
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
Diffstat (limited to 'gnu/packages/python-web.scm')
-rw-r--r--gnu/packages/python-web.scm10
1 files changed, 6 insertions, 4 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 9b5aba98495..5ef3de2334c 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