[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#69074] [PATCH 02/11] gnu: Add python-mulpyplexer.
From: |
soeren |
Subject: |
[bug#69074] [PATCH 02/11] gnu: Add python-mulpyplexer. |
Date: |
Thu, 11 Jul 2024 23:27:13 +0200 |
From: Sören Tempel <soeren@soeren-tempel.net>
* gnu/packages/python-xyz.scm (python-mulpyplexer): New variable.
---
gnu/packages/python-xyz.scm | 23 +++++++++++++++++++++++
1 file changed, 23 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 2618c2078d..2a00bed697 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -33787,6 +33787,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")
- [bug#69074] [PATCH 01/11] gnu: Add python-keystone-engine., soeren, 2024/07/11
- [bug#69074] [PATCH 07/11] gnu: Add python-archinfo., soeren, 2024/07/11
- [bug#69074] [PATCH 05/11] gnu: Add python-pysmt., soeren, 2024/07/11
- [bug#69074] [PATCH 03/11] gnu: Add python-nampa., soeren, 2024/07/11
- [bug#69074] [PATCH 10/11] gnu: Add python-ailment., soeren, 2024/07/11
- [bug#69074] [PATCH 02/11] gnu: Add python-mulpyplexer.,
soeren <=
- [bug#69074] [PATCH 08/11] gnu: Add python-pyvex., soeren, 2024/07/11
- [bug#69074] [PATCH 06/11] gnu: Add python-claripy., soeren, 2024/07/11
- [bug#69074] [PATCH 11/11] gnu: Add python-angr., soeren, 2024/07/11
- [bug#69074] [PATCH 04/11] gnu: Add python-rpyc., soeren, 2024/07/11
- [bug#69074] [PATCH 09/11] gnu: Add python-cle., soeren, 2024/07/11