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