From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:37860) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dfM1D-0000R2-RI for guix-patches@gnu.org; Wed, 09 Aug 2017 04:07:09 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dfM1A-0003BM-IN for guix-patches@gnu.org; Wed, 09 Aug 2017 04:07:07 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:43931) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dfM1A-0003BH-GE for guix-patches@gnu.org; Wed, 09 Aug 2017 04:07:04 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dfM1A-00068D-Ac for guix-patches@gnu.org; Wed, 09 Aug 2017 04:07:04 -0400 Subject: [bug#28024] [PATCH 1/5] gnu: Add python-tornado-http-auth. References: <20170809082913.12847730@cbaines.net> In-Reply-To: <20170809082913.12847730@cbaines.net> Resent-Message-ID: From: Christopher Baines Date: Wed, 9 Aug 2017 09:06:00 +0100 Message-Id: <20170809080604.6236-1-mail@cbaines.net> 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: 28024@debbugs.gnu.org * gnu/packages/python.scm (python-tornado-http-auth): New variable. --- gnu/packages/python.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 79c6eca00..227c01027 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -6560,6 +6560,29 @@ connection to each user.") ("python2-singledispatch" ,python2-singledispatch) ,@(package-propagated-inputs tornado)))))) +(define-public python-tornado-http-auth + (package + (name "python-tornado-http-auth") + (version "1.1.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "tornado-http-auth" version)) + (sha256 + (base32 + "0znrgqd7k2s4ia474xizi6h3061zj4sn5n6cq76bkwl3wwshifn5")))) + (build-system python-build-system) + (propagated-inputs + `(("python-tornado" ,python-tornado))) + (home-page + "https://github.com/gvalkov/tornado-http-auth") + (synopsis + "Digest and basic authentication module for Tornado") + (description + "Provides support for adding authentication to services using the Tornado +web framework, either via the basic or digest authentication schemes.") + (license license:asl2.0))) + ;; the python- version can be removed with python-3.5 (define-public python-backports-abc (package -- 2.14.0