diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2025-01-12 21:40:48 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2025-01-20 21:37:47 +0100 |
commit | a59266cfb926968bcf937e5c798e9243c003efd7 (patch) | |
tree | d8dde3785d72120605b56db0340c22bc7940ce7e /gnu/packages/python-xyz.scm | |
parent | 3bd64535d62a4c6dca32d3cb15b35a6579103de8 (diff) |
gnu: python-mulpyplexer: Add missing inputs.
* gnu/packages/python-xyz.scm (python-mulpyplexer)[arguments]: Reformat.
[native-inputs]: Add python-setuptools and python-wheel.
Change-Id: If55056c94f7693328a51c361909fa52b093126e9
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r-- | gnu/packages/python-xyz.scm | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index c76e49c339..c7bf40e01e 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -36030,11 +36030,14 @@ common library subroutines in disassembled binaries.") (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"))))))) + (list + #:phases + '(modify-phases %standard-phases + (replace 'check + (lambda* (#:key tests? #:allow-other-keys) + (when tests? + (invoke "python" "mulpyplexer.py"))))))) + (native-inputs (list python-setuptools python-wheel)) (home-page "https://github.com/zardus/mulpyplexer/") (synopsis "Multiplexes interactions with lists of Python objects") (description "This module provides utilities for multiplexing |