summaryrefslogtreecommitdiff
path: root/gnu/packages
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2026-05-29 00:06:11 +0200
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-06-01 11:50:52 +0100
commit22727f40eba192acdc9d90c45aea0af996ee6574 (patch)
tree6d78be673885735a62e642201dd7e2214d9e4f73 /gnu/packages
parent37d9bd6420009557993717b956bacdff0013803f (diff)
gnu: openpmix: Switch to python-cython.
* gnu/packages/parallel.scm (openpmix): [native-inputs]: Remove python-cython-0; add python-cython. (openpmix-4)[native-inputs]: Replace python-cython with python-cython-0. Relates-to: guix/guix!8957 Change-Id: Ife3af374e54cb3604befa94f196b66da6d02e755 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages')
-rw-r--r--gnu/packages/parallel.scm7
1 files changed, 5 insertions, 2 deletions
diff --git a/gnu/packages/parallel.scm b/gnu/packages/parallel.scm
index c1a238e4415..0e7bd850763 100644
--- a/gnu/packages/parallel.scm
+++ b/gnu/packages/parallel.scm
@@ -741,7 +741,7 @@ single-instruction multiple-data (SIMD) intrinsics.")
741 perl 741 perl
742 flex 742 flex
743 python 743 python
744 python-cython-0 744 python-cython
745 python-setuptools)) 745 python-setuptools))
746 (synopsis "PMIx library") 746 (synopsis "PMIx library")
747 (description 747 (description
@@ -780,7 +780,10 @@ commonly needed services in distributed and parallel computing systems.")
780 ((#:configure-flags flags #~'()) 780 ((#:configure-flags flags #~'())
781 #~(list (string-append "--with-hwloc=" 781 #~(list (string-append "--with-hwloc="
782 (ungexp (this-package-input "hwloc") "lib")) 782 (ungexp (this-package-input "hwloc") "lib"))
783 "--enable-python-bindings")))))) 783 "--enable-python-bindings"))))
784 (native-inputs
785 (modify-inputs native-inputs
786 (replace "python-cython" python-cython-0)))))
784 787
785(define-public prrte 788(define-public prrte
786 (package 789 (package