summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-01-23 22:01:01 +0000
committerAndreas Enge <andreas@enge.fr>2025-04-16 11:46:08 +0200
commitb5b0e983645f72ffc118444b6ecee2780ead1bf8 (patch)
tree6a114d88466cc2a621483f7bbef4f0f9fc09cf8e
parent90ee5a3fbc8db3ea0b38d684d1a0295c7bbd24b4 (diff)
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
-rw-r--r--gnu/packages/python-web.scm17
1 files changed, 10 insertions, 7 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 52e1eafc97c..7ca8f47b8f4 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -3981,19 +3981,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