From 23e85d1b6e18d4d4c9b037568cfc8adb4608a83a Mon Sep 17 00:00:00 2001 From: Nicolas Graves Date: Sat, 22 Nov 2025 12:25:53 +0100 Subject: [PATCH] gnu: python-pydispatcher: Update to 2.0.7. * gnu/packages/python-xyz.scm (python-pydispatcher): Update to 2.0.7. [build-system]: Switch to pyproject-build-system. [arguments]: Drop them. [native-inputs]: Add python-setuptools. [description]: Improve style. Change-Id: I593eef1ce5d30caea178ade07af1ecc6f863b535 Signed-off-by: Sharlatan Hellseher --- gnu/packages/python-xyz.scm | 22 ++++++++-------------- 1 file changed, 8 insertions(+), 14 deletions(-) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 440efbbec0ef1da4b802618e3f38b99f10a56a11..c4f1e9fee10627b2ef10d4eee768537ddd9b309d 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -34513,27 +34513,21 @@ analyzing benchmarks. It features a simple API that can: (define-public python-pydispatcher (package (name "python-pydispatcher") - (version "2.0.5") + (version "2.0.7") (source (origin (method url-fetch) (uri (pypi-uri "PyDispatcher" version)) (sha256 - (base32 "1bswbmhlbqdxlgbxlb6xrlm4k253sg8nvpl1whgsys8p3fg0cw2m")))) - (build-system python-build-system) - (arguments - `(#:phases - (modify-phases %standard-phases - (replace 'check - (lambda* (#:key tests? #:allow-other-keys) - (when tests? - (invoke "pytest"))))))) - (native-inputs (list python-pytest)) + (base32 "0cdyymidxkzvcq6lpybhmh0ngyhld6jdcaac9bbvmh8d12nwcxxp")))) + (build-system pyproject-build-system) + (native-inputs (list python-pytest python-setuptools)) (home-page "https://pydispatcher.sourceforge.net") (synopsis "Multi-producer-multi-consumer signal dispatching mechanism") - (description "PyDispatcher is an enhanced version of Patrick K. O’Brien’s -original @code{dispatcher.py} module. It provides the Python programmer with -a robust mechanism for event routing within various application contexts. + (description + "PyDispatcher is an enhanced version of Patrick K. O’Brien’s original +@code{dispatcher.py} module. It provides the Python programmer with a robust +mechanism for event routing within various application contexts. Included in the package are the robustapply and saferef modules, which provide the ability to selectively apply arguments to callable objects