From mboxrd@z Thu Jan 1 00:00:00 1970 From: Leo Famulari Subject: [PATCH 06/17] gnu: Add python-execnet. Date: Sun, 3 Jan 2016 19:05:04 -0500 Message-ID: References: Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:45839) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aFseL-0005Z0-D5 for guix-devel@gnu.org; Sun, 03 Jan 2016 19:05:26 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aFseG-00061m-Qg for guix-devel@gnu.org; Sun, 03 Jan 2016 19:05:25 -0500 Received: from out4-smtp.messagingengine.com ([66.111.4.28]:56264) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aFseG-00061I-NF for guix-devel@gnu.org; Sun, 03 Jan 2016 19:05:20 -0500 Received: from jasmine.lan (c-69-249-5-231.hsd1.pa.comcast.net [69.249.5.231]) by mail.messagingengine.com (Postfix) with ESMTPA id C7BC0C016D5 for ; Sun, 3 Jan 2016 19:05:19 -0500 (EST) In-Reply-To: In-Reply-To: References: List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: guix-devel@gnu.org * gnu/packages/python.scm (python-execnet): New variable. --- gnu/packages/python.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 1680a17..46b98f6 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -6716,3 +6716,29 @@ package and greatly reduce the number of imports for your users. It is a small pure Python module that works on virtually all Python versions.") (home-page "https://bitbucket.org/hpk42/apipkg") (license license:expat))) + +(define-public python-execnet + (package + (name "python-execnet") + (version "1.4.1") + (source (origin + (method url-fetch) + (uri (pypi-uri "execnet" version)) + (sha256 + (base32 + "1rpk1vyclhg911p3hql0m0nrpq7q7mysxnaaw6vs29cpa6kx8vgn")))) + (build-system python-build-system) + (native-inputs + `(("python-setuptools-scm" ,python-setuptools-scm))) + (propagated-inputs + `(("python-apipkg" ,python-apipkg))) + (synopsis "Rapid multi-Python deployment") + (description "Execnet provides a share-nothing model with +channel-send/receive communication for distributing execution across many +Python interpreters across version, platform and network barriers. It has a +minimal and fast API targetting the following uses: +1) distribute tasks to (many) local or remote CPUs +2) write and deploy hybrid multi-process applications +3) write scripts to administer multiple environments") + (home-page "http://codespeak.net/execnet/") + (license license:expat))) -- 2.6.4