From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:44914) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fvlBY-0004u0-MI for guix-patches@gnu.org; Fri, 31 Aug 2018 11:18:10 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fvlBS-00050B-Rz for guix-patches@gnu.org; Fri, 31 Aug 2018 11:18:08 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:35780) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fvlBS-0004zz-Ma for guix-patches@gnu.org; Fri, 31 Aug 2018 11:18:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fvlBS-0006O6-Gi for guix-patches@gnu.org; Fri, 31 Aug 2018 11:18:02 -0400 Subject: [bug#32602] [PATCH] gnu: Add python-clustershell. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:39515) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fvl5W-0006OQ-5i for guix-patches@gnu.org; Fri, 31 Aug 2018 11:11:57 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fvktD-0007tg-H1 for guix-patches@gnu.org; Fri, 31 Aug 2018 10:59:15 -0400 Received: from kerio.init.at ([62.99.204.240]:42582) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1fvkt9-0007sD-Oh for guix-patches@gnu.org; Fri, 31 Aug 2018 10:59:09 -0400 Received: from mri2.init.at ([62.99.204.235]) by kerio.init.at (Kerio Connect 8.3.2) (using TLSv1.2 with cipher DHE-RSA-AES256-GCM-SHA384 (256 bits)) for guix-patches@gnu.org; Fri, 31 Aug 2018 16:59:02 +0200 From: Manuel Graf Date: Fri, 31 Aug 2018 16:55:57 +0200 Message-Id: <20180831145557.4435-1-graf@init.at> 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: 32602@debbugs.gnu.org Cc: Manuel Graf * 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