guix-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug#32602] [PATCH] gnu: Add python-clustershell.


From: Manuel Graf
Subject: [bug#32602] [PATCH] gnu: Add python-clustershell.
Date: Fri, 31 Aug 2018 16:55:57 +0200

* gnu/packages/python.scm (python-clustershell): New variable.
---
 gnu/packages/python.scm | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index f59e24d5f..9dbeb0cf3 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -14005,3 +14005,31 @@ scalable way of keeping track of data together with 
learned annotations and
 reduces the code overhead typically encountered when using a mostly
 object-oriented library such as @code{scikit-learn}.")
     (license license:bsd-3)))
+
+(define-public python-clustershell
+  (package
+    (name "python-clustershell")
+    (version "1.8")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "https://github.com/cea-hpc/clustershell/archive/v";
+                           version
+                           ".tar.gz"))
+       (sha256
+        (base32 "1qyf6zp5ikk8rk7zvx5ssbgr9si2bqv3a3415590kd07s7i16nmd"))))
+    (build-system python-build-system)
+    (propagated-inputs `(("python-pyyaml" ,python-pyyaml)
+                         ("openssh" ,openssh)))
+    (home-page "https://cea-hpc.github.io/clustershell/";)
+    (synopsis
+     "Scalable event-driven Python Framework for cluster administration")
+    (description
+     "ClusterShell is an event-driven open source Python framework, designed to
+run local or distant commands in parallel on server farms or on large Linux
+clusters. It will take care of common issues encountered on HPC clusters, such
+as operating on groups of nodes, running distributed commands using optimized
+execution algorithms, as well as gathering results and merging identical
+outputs, or retrieving return codes. ClusterShell takes advantage of existing
+remote shell facilities already installed on your systems, like SSH.")
+    (license license:lgpl2.1)))
-- 
2.14.4







reply via email to

[Prev in Thread] Current Thread [Next in Thread]