mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: python-wsgi-intercept: Update to 1.13.1.
* gnu/packages/python-web.scm (python-wsgi-intercept): Update to 1.13.1. [build-system]: Switch to pyproject-build-system. [arguments]: Disable tests. [native-inputs]: Add python-setuptools and python-wheel. Change-Id: I1bfcb902e543eedcaeed3d01ee5996f9b5c96925
This commit is contained in:
parent
95b390b774
commit
c70738d9b0
1 changed files with 13 additions and 4 deletions
|
@ -3221,18 +3221,27 @@ term.js Javascript terminal emulator library.")
|
||||||
(define-public python-wsgi-intercept
|
(define-public python-wsgi-intercept
|
||||||
(package
|
(package
|
||||||
(name "python-wsgi-intercept")
|
(name "python-wsgi-intercept")
|
||||||
(version "1.2.2")
|
(version "1.13.1")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (pypi-uri "wsgi_intercept" version))
|
(uri (pypi-uri "wsgi_intercept" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0kjj2v2dvmnpdd5h5gk9rzz0f54rhjb0yiz3zg65bmp65slfw65d"))))
|
"1h94dj7h7n7zdj3ll4imqjhq5vk21yidk2niwnmpw7xik9inrgbr"))))
|
||||||
(build-system python-build-system)
|
(build-system pyproject-build-system)
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
;; XXX: tests required internet access
|
||||||
|
#:tests? #f))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
(list python-six))
|
(list python-six))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list python-pytest python-httplib2 python-requests python-urllib3))
|
(list python-httplib2
|
||||||
|
python-pytest
|
||||||
|
python-requests
|
||||||
|
python-setuptools
|
||||||
|
python-urllib3
|
||||||
|
python-wheel))
|
||||||
(synopsis "Puts a WSGI application in place of a real URI for testing")
|
(synopsis "Puts a WSGI application in place of a real URI for testing")
|
||||||
(description "Wsgi_intercept installs a WSGI application in place of a real
|
(description "Wsgi_intercept installs a WSGI application in place of a real
|
||||||
URI for testing. Testing a WSGI application normally involves starting a
|
URI for testing. Testing a WSGI application normally involves starting a
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue