From mboxrd@z Thu Jan 1 00:00:00 1970 From: Leo Famulari Subject: Re: [PATCH 03/17] gnu: Add python-click-threading. Date: Thu, 7 Jan 2016 11:48:37 -0500 Message-ID: <20160107164837.GA3632@jasmine> References: <6549e6f9fc56698bf79cc0278323393af7ab914f.1451865663.git.leo@famulari.name> <932e0559443cea25f4606a0107c70bf2@openmailbox.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:54268) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aHDjt-00049F-9E for guix-devel@gnu.org; Thu, 07 Jan 2016 11:48:42 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aHDjq-0007v4-Ir for guix-devel@gnu.org; Thu, 07 Jan 2016 11:48:41 -0500 Received: from out5-smtp.messagingengine.com ([66.111.4.29]:45441) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aHDjq-0007uz-Eg for guix-devel@gnu.org; Thu, 07 Jan 2016 11:48:38 -0500 Received: from compute6.internal (compute6.nyi.internal [10.202.2.46]) by mailout.nyi.internal (Postfix) with ESMTP id 187F320139 for ; Thu, 7 Jan 2016 11:48:38 -0500 (EST) Content-Disposition: inline In-Reply-To: <932e0559443cea25f4606a0107c70bf2@openmailbox.org> 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: Eric Bavier Cc: guix-devel@gnu.org, guix-devel-bounces+ericbavier=openmailbox.org@gnu.org On Wed, Jan 06, 2016 at 12:48:35PM -0600, Eric Bavier wrote: > On 2016-01-03 18:05, Leo Famulari wrote: > >* gnu/packages/python.scm (python-click-threading): New variable. > >--- > > gnu/packages/python.scm | 19 +++++++++++++++++++ > > 1 file changed, 19 insertions(+) > > > >diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm > >index 8f05b5a..5d28bbb 100644 > >--- a/gnu/packages/python.scm > >+++ b/gnu/packages/python.scm > >@@ -6656,3 +6656,22 @@ for atomic filesystem operations.") > > with python-requests.") > > (home-page "https://github.com/sigmavirus24/requests-toolbelt") > > (license asl2.0))) > >+ > >+(define-public python-click-threading > >+ (package > >+ (name "python-click-threading") > >+ (version "0.1.2") > >+ (source (origin > >+ (method url-fetch) > >+ (uri (pypi-uri "click-threading" version)) > >+ (sha256 > >+ (base32 > >+ "0jmrv4334lfxa2ss53c06dafdwqbk1pb3ihd26izn5igw1bm8145")))) > >+ (build-system python-build-system) > >+ (propagated-inputs > >+ `(("python-click" ,python-click))) > >+ (synopsis "Utilities for multithreading in Click") > >+ (description "The package provides utilities for multithreading in > > s/The/This/ for consistency with other package descriptions. Done. > > -- > `~Eric