diff options
author | Felix Gruber <[email protected]> | 2022-04-20 17:27:58 +0000 |
---|---|---|
committer | Ludovic Courtès <[email protected]> | 2022-05-02 15:14:45 +0200 |
commit | f728d1dcd239ea2ad5f05c77f8a990bb9a5e0e83 (patch) | |
tree | fe624910cf7896fc7e1fbb7c8848b29e84a9b18c /gnu/packages/python-xyz.scm | |
parent | 919fdd6fcc18cd5ee68cab5b01c1dacae60bdbec (diff) |
gnu: Add python-pydispatcher.
* gnu/packages/python-xyz.scm (python-pydispatcher): New variable.
Signed-off-by: Ludovic Courtès <[email protected]>
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r-- | gnu/packages/python-xyz.scm | 32 |
1 files changed, 31 insertions, 1 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 074cbeb970..1bc4468fa9 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -108,7 +108,7 @@ ;;; Copyright © 2021 Simon Streit <[email protected]> ;;; Copyright © 2021 Daniel Meißner <[email protected]> ;;; Copyright © 2021 Pradana Aumars <[email protected]> -;;; Copyright © 2021 Felix Gruber <[email protected]> +;;; Copyright © 2021, 2022 Felix Gruber <[email protected]> ;;; Copyright © 2021 Sébastien Lerique <[email protected]> ;;; Copyright © 2021 Raphaël Mélotte <[email protected]> ;;; Copyright © 2021 ZmnSCPxj <[email protected]> @@ -29505,6 +29505,36 @@ uses the parsed regular expression, so you get a much more accurate result than trying to just split strings.") (license license:asl2.0))) +(define-public python-pydispatcher + (package + (name "python-pydispatcher") + (version "2.0.5") + (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)) + (home-page "http://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. + +Included in the package are the robustapply and saferef modules, which +provide the ability to selectively apply arguments to callable objects +and to reference instance methods using weak-references.") + (license license:bsd-3))) + (define-public python-hypy-utils (package (name "python-hypy-utils") |