From mboxrd@z Thu Jan 1 00:00:00 1970 From: Eric Bavier Subject: Re: [PATCH 03/17] gnu: Add python-click-threading. Date: Wed, 06 Jan 2016 12:48:35 -0600 Message-ID: <932e0559443cea25f4606a0107c70bf2@openmailbox.org> References: <6549e6f9fc56698bf79cc0278323393af7ab914f.1451865663.git.leo@famulari.name> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:47300) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aGt8f-0000e3-Pz for guix-devel@gnu.org; Wed, 06 Jan 2016 13:48:54 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aGt8c-0007fT-Ks for guix-devel@gnu.org; Wed, 06 Jan 2016 13:48:53 -0500 Received: from smtp9.openmailbox.org ([62.4.1.43]:43789) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aGt8b-0007f8-A2 for guix-devel@gnu.org; Wed, 06 Jan 2016 13:48:50 -0500 In-Reply-To: <6549e6f9fc56698bf79cc0278323393af7ab914f.1451865663.git.leo@famulari.name> 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: Leo Famulari Cc: guix-devel@gnu.org, guix-devel-bounces+ericbavier=openmailbox.org@gnu.org 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. -- `~Eric