This is an automated email from the git hooks/post-receive script.
sharlatan pushed a commit to branch python-team
in repository guix.
The following commit(s) were added to refs/heads/python-team by this push:
new cff2986310 gnu: python-zope-testing: Update to 5.0.1.
cff2986310 is described below
commit cff2986310d56e49d6bba496bb1d13abf62f7c57
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Thu Jan 23 22:01:01 2025 +0000
gnu: python-zope-testing: Update to 5.0.1.
* gnu/packages/python-web.scm (python-zope-testing): Update to 5.0.1.
[build-system]: Swap to pyproject-build-system.
[native-inputs]: Add python-setuptools and python-wheel.
[home-page]: Adjust it as take from
<https://github.com/zopefoundation/zope.testing>.
[description]: Adjust fill-column.
Change-Id: Ibe1203a0c0602df31d7d0cb49b362ba453c861f1
---
gnu/packages/python-web.scm | 17 ++++++++++-------
1 file changed, 10 insertions(+), 7 deletions(-)
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 1bdc7dafa5..36f230c5dc 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -3771,19 +3771,22 @@ that have uses outside of the Zope framework.")
(define-public python-zope-testing
(package
(name "python-zope-testing")
- (version "4.7")
+ (version "5.0.1")
(source
(origin
(method url-fetch)
(uri (pypi-uri "zope.testing" version))
(sha256
- (base32
- "1sh3c3i0m8n8fnhqiry0bk3rr356i56ry7calmn57s1pvv8yhsyn"))))
- (build-system python-build-system)
- (home-page "https://pypi.org/project/zope.testing/")
+ (base32 "0jfnycp9kzmmkk0rard8chd81v5yp6vnm09ky7d3qmv6svcd0z78"))))
+ (build-system pyproject-build-system)
+ (native-inputs
+ (list python-setuptools
+ python-wheel))
+ (home-page "https://zopetesting.readthedocs.io/")
(synopsis "Zope testing helpers")
- (description "Zope.testing provides a number of testing utilities for HTML
-forms, HTTP servers, regular expressions, and more.")
+ (description
+ "Zope.testing provides a number of testing utilities for HTML forms, HTTP
+servers, regular expressions, and more.")
(license license:zpl2.1)))
(define-public python-zope-testrunner