~ruther/guix-local

a144005c9312a4399e398adacf7cef4da6a57b58 — Sharlatan Hellseher 6 months ago 3be34f2
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
1 files changed, 6 insertions(+), 4 deletions(-)

M gnu/packages/python-web.scm
M gnu/packages/python-web.scm => gnu/packages/python-web.scm +6 -4
@@ 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