1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-05-22 00:55:56 +02:00

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
This commit is contained in:
Sharlatan Hellseher
2025-10-31 14:44:05 +00:00
parent 3be34f2e3c
commit a144005c93
+6 -4
View File
@@ -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