summaryrefslogtreecommitdiff
path: root/gnu/packages/python-web.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-07-18 15:31:41 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-09-25 09:36:09 +0100
commitff16d12ba024d4879fee14cbf4235469cab9cb1b (patch)
tree7582ba897b51eb610a9f65ee2341988ddea7ff5b /gnu/packages/python-web.scm
parent72c525035d989e3d00e80ad24c22f2855071932b (diff)
gnu: python-zope-testing: Update to 5.1.
* gnu/packages/python-web.scm (python-zope-testing): Update to 5.1. [arguments] <test-backend>: Use 'custom. [native-inputs]: Remove python-wheel. Change-Id: I755e49fb40933829940195966a996b06c8423969
Diffstat (limited to 'gnu/packages/python-web.scm')
-rw-r--r--gnu/packages/python-web.scm11
1 files changed, 6 insertions, 5 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 890d431f86..9ad1c18382 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -4571,17 +4571,18 @@ that have uses outside of the Zope framework.")
(define-public python-zope-testing
(package
(name "python-zope-testing")
- (version "5.0.1")
+ (version "5.1")
(source
(origin
(method url-fetch)
- (uri (pypi-uri "zope.testing" version))
+ (uri (pypi-uri "zope_testing" version))
(sha256
- (base32 "0jfnycp9kzmmkk0rard8chd81v5yp6vnm09ky7d3qmv6svcd0z78"))))
+ (base32 "0iyc3ahiyibqqzk8s4i07c7all9ng89dp6hs95p7jf1xxjmfndbi"))))
(build-system pyproject-build-system)
+ (arguments (list #:test-backend #~'custom
+ #:test-flags #~(list "src/zope/testing/tests.py")))
(native-inputs
- (list python-setuptools
- python-wheel))
+ (list python-setuptools))
(home-page "https://zopetesting.readthedocs.io/")
(synopsis "Zope testing helpers")
(description