gnu: Add python-mulpyplexer.

* gnu/packages/python-xyz.scm (python-mulpyplexer): New variable.

Signed-off-by: jgart <jgart@dismail.de>
This commit is contained in:
Sören Tempel 2024-07-11 23:27:13 +02:00 committed by jgart
parent 13369ba7ca
commit 0114007bf3
No known key found for this signature in database
GPG key ID: A52AA2B477B6DD35

View file

@ -33790,6 +33790,29 @@ (define-public python-opcodes
and BMI2).")
(license license:bsd-2))))
(define-public python-mulpyplexer
(package
(name "python-mulpyplexer")
(version "0.09")
(source
(origin
(method url-fetch)
(uri (pypi-uri "mulpyplexer" version))
(sha256
(base32 "0c5xzci1djy1yi9hxxh8g67l6ms8r7ad7ja20pv8hfbdysdrwkhl"))))
(build-system pyproject-build-system)
(arguments
`(#:phases (modify-phases %standard-phases
(replace 'check
(lambda* (#:key tests? #:allow-other-keys)
(when tests?
(invoke "python" "mulpyplexer.py")))))))
(home-page "https://github.com/zardus/mulpyplexer/")
(synopsis "Multiplexes interactions with lists of Python objects")
(description "This module provides utilities for multiplexing
interactions with lists of Python objects.")
(license license:bsd-2)))
(define-public python-itanium-demangler
(package
(name "python-itanium-demangler")