From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:42573) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1ihGch-0007ne-Au for guix-patches@gnu.org; Tue, 17 Dec 2019 12:27:04 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ihGcg-00086Y-4f for guix-patches@gnu.org; Tue, 17 Dec 2019 12:27:03 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:36399) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ihGcg-00086U-1C for guix-patches@gnu.org; Tue, 17 Dec 2019 12:27:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1ihGcf-0004X1-V7 for guix-patches@gnu.org; Tue, 17 Dec 2019 12:27:01 -0500 Subject: [bug#38652] [PATCH 3/5] gnu: Add python-ppft. Resent-Message-ID: From: =?UTF-8?Q?M=C4=83d=C4=83lin?= Ionel =?UTF-8?Q?Patra=C8=99cu?= Date: Tue, 17 Dec 2019 18:24:35 +0100 Message-ID: <20191217172437.21217-3-madalinionel.patrascu@mdc-berlin.de> In-Reply-To: <20191217172437.21217-1-madalinionel.patrascu@mdc-berlin.de> References: <20191217172437.21217-1-madalinionel.patrascu@mdc-berlin.de> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 38652@debbugs.gnu.org Cc: Ricardo Wurmus , =?UTF-8?Q?M=C4=83d=C4=83lin?= Ionel =?UTF-8?Q?Patra=C8=99cu?= * gnu/packages/python-xyz.scm (python-ppft): New variable. Co-authored-by: Ricardo Wurmus --- gnu/packages/python-xyz.scm | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index acc030fb9b..f5b2ff16e7 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -16899,3 +16899,38 @@ always possible to declare a command with the highest possible (and least flexible) layer and then tune the behaviour with any of the lower layers including the native API of @code{python-argparse}.") (license license:lgpl3+)))) + +(define-public python-ppft + (package + (name "python-ppft") + (version "1.6.6.1") + (source + (origin + (method url-fetch) + (uri (pypi-uri "ppft" version)) + (sha256 + (base32 + "1z1invkhszc5d2mvgr221v7cszzifcc77mz0pv3wjp6x5q2768cy")))) + (build-system python-build-system) + (arguments + `(#:phases + (modify-phases %standard-phases + (replace 'check + (lambda _ + (with-directory-excursion "/tmp" + (invoke "nosetests" "-v")) + #t))))) + (native-inputs + `(("python-nose" ,python-nose))) + (propagated-inputs + `(("python-six" ,python-six))) + (home-page "https://pypi.org/project/ppft/") + (synopsis "Fork of Parallel Python") + (description + "This package phython-ppft is a fork of Parallel Python, and is developed +as part of python-pathos. Parallel Python module (pp) provides an easy and +efficient way to create parallel-enabled applications for SMP (symmetric +multiprocessing) computers and clusters. pp module features cross-platform +portability and dynamic load balancing.") + ;; looks like bsd-3 https://github.com/uqfoundation/ppft/blob/master/LICENSE + (license license:bsd-3))) -- 2.24.1