[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#43967] [PATCH v2 1/2] * gnu/packages/python-xyz (python-parallel):
From: |
BonfaceKilz |
Subject: |
[bug#43967] [PATCH v2 1/2] * gnu/packages/python-xyz (python-parallel): New package. |
Date: |
Fri, 16 Oct 2020 04:31:52 +0300 |
---
gnu/packages/python-xyz.scm | 30 ++++++++++++++++++++++++++++++
1 file changed, 30 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index d98be1c3b8..51bee25f66 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -87,6 +87,7 @@
;;; Copyright © 2020 Malte Frank Gerdes <malte.f.gerdes@gmail.com>
;;; Copyright © 2020 Joseph LaFreniere <joseph@lafreniere.xyz>
;;; Copyright © 2020 Tim Gesthuizen <tim.gesthuizen@yahoo.de>
+;;; Copyright © 2020 Bonface Munyoki Kilyungi <bonfacemunyoki@gmail.com>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -22332,3 +22333,32 @@ NestedText is both simple and natural. Only a small
number of concepts and rule
be kept in mind when creating it. It is easily created, modified, or viewed
with
a text editor and easily understood and used by both programmers and
non-programmers.")
(license license:expat))) ; MIT license
+
+(define-public python-parallel
+ (package
+ (name "python-parallel")
+ (version "1.6.4.4")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "https://www.parallelpython.com/downloads/pp/pp-"
+ version ".zip"))
+ (sha256
+ (base32
+ "1mzk4yabxj6r149fswhis18hd8dnag5sj8i4wb06450zq3pi8dh7"))))
+ (native-inputs
+ `(("unzip" ,unzip)))
+ (build-system python-build-system)
+ (arguments
+ `(#:tests? #f))
+ (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 application written with PP will parallelize efficiently even on
+heterogeneous and multi-platform clusters (including clusters running other
+application with variable CPU loads). Visit http://www.parallelpython.com for
+further information.")
+ (license license:bsd-3)))
--
2.28.0
[bug#43967] [PATCH v3 0/2] Add python2-parallel, BonfaceKilz, 2020/10/15
[bug#43967] [PATCH v4 0/1] gnu: Add python2-parallel., BonfaceKilz, 2020/10/18
[bug#43967] [PATCH v4 0/1] gnu: Add python2-parallel., BonfaceKilz, 2020/10/18