mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
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:
parent
13369ba7ca
commit
0114007bf3
1 changed files with 23 additions and 0 deletions
|
@ -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")
|
||||
|
|
Loading…
Reference in a new issue