summaryrefslogtreecommitdiff
path: root/gnu/packages
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-09-12 23:09:28 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-09-25 09:36:06 +0100
commit2c37d4edccfbd12944aad844d6a89ddf56fd0b82 (patch)
treeb18930b9f72727cf8f83a5a2ca8d1ba3ad3ac9e0 /gnu/packages
parent9d03e6f6216dfad6d43399bc621df56dede45319 (diff)
gnu: python-webtest: Update to 3.0.6.
* gnu/packages/python-web.scm (python-webtest): Update to 3.0.6. [build-system]: Switch to pyproject-build-system. [propagated-inputs]: Remove python-six. [native-inputs]: Add python-setuptools. Change-Id: I582650db04b599d2cda71ade68451dfa731897ff
Diffstat (limited to 'gnu/packages')
-rw-r--r--gnu/packages/python-web.scm21
1 files changed, 13 insertions, 8 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 7a2e116f3ba..0beb8812789 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -6036,24 +6036,29 @@ file.")
(define-public python-webtest
(package
(name "python-webtest")
- (version "2.0.35")
+ (version "3.0.6")
(source
(origin
(method url-fetch)
- (uri (pypi-uri "WebTest" version))
+ (uri (pypi-uri "webtest" version))
(sha256
- (base32 "11xhgdj251zkvz5w30fvspii08ki2vrpr1im9sph1wmlnasnihda"))))
- (build-system python-build-system)
+ (base32 "0jwl8i9xvm5xim1h2jrwfbqac1g3fpiazfdwfp2md3s4899gsmj2"))))
+ (build-system pyproject-build-system)
(arguments
;; Tests require python-pyquery, which creates a circular dependency.
`(#:tests? #f))
+ (native-inputs
+ (list python-setuptools))
(propagated-inputs
- (list python-waitress python-webob python-six python-beautifulsoup4))
+ (list python-beautifulsoup4
+ python-waitress
+ python-webob))
(home-page "https://docs.pylonsproject.org/projects/webtest/")
(synopsis "Helper to test WSGI applications")
- (description "Webtest allows you to test your Python web applications
-without starting an HTTP server. It supports anything that supports the
-minimum of WSGI.")
+ (description
+ "Webtest allows you to test your Python web applications without
+starting an HTTP server. It supports anything that supports the minimum of
+WSGI.")
(license license:expat)))
(define-public python-flask