From b9256b33b9b6ffdb51ad3f7fd77cc2dce8cbe438 Mon Sep 17 00:00:00 2001 From: Nicolas Graves Date: Fri, 21 Nov 2025 17:39:37 +0100 Subject: [PATCH] gnu: python-parallel: Switch to pyproject. * gnu/packages/python-xyz.scm (python-parallel): [build-system]: Switch to pyproject-build-system. [native-inputs]: Add python-setuptools. [source, propagated-inputs, native-inputs, description]: Improve style. Change-Id: I76d2823b8184618b7bb6c7a876f2593fa55fd90f Signed-off-by: Sharlatan Hellseher --- gnu/packages/python-xyz.scm | 27 ++++++++++++--------------- 1 file changed, 12 insertions(+), 15 deletions(-) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index f2fe3530a2735358a525951613442d74c5753c49..ebc4db8654eec7bdd8df505a0cbb6f1b101d8071 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -31379,24 +31379,21 @@ module patches @code{asyncio} to allow nested use of @code{asyncio.run} and (source (origin (method url-fetch) - (uri (string-append - "https://www.parallelpython.com/downloads/pp/pp-" - version ".zip")) + (uri (string-append "https://www.parallelpython.com/downloads/pp/pp-" + version ".zip")) (sha256 - (base32 - "1mzk4yabxj6r149fswhis18hd8dnag5sj8i4wb06450zq3pi8dh7")))) - (native-inputs - (list unzip)) - (propagated-inputs - (list python-six)) - (build-system python-build-system) - (arguments '(#:tests? #f)) ; No test suite. + (base32 "1mzk4yabxj6r149fswhis18hd8dnag5sj8i4wb06450zq3pi8dh7")))) + (build-system pyproject-build-system) + (arguments (list #:tests? #f)) ;No test suite. + (native-inputs (list python-setuptools unzip)) + (propagated-inputs (list python-six)) (home-page "https://www.parallelpython.com") (synopsis "Parallel and distributed programming for Python") - (description "Parallel Python module (PP) provides an easy and efficient -way to create parallel-enabled applications for SMP computers and clusters. -PP module features cross-platform portability and dynamic load balancing. -Thus applications written with PP will parallelize efficiently even on + (description + "Parallel Python module (PP) provides an easy and efficient way to create +parallel-enabled applications for SMP computers and clusters. PP module +features cross-platform portability and dynamic load balancing. Thus +applications written with PP will parallelize efficiently even on heterogeneous and multi-platform clusters (including clusters running other applications with variable CPU loads).") (license license:bsd-3)))