From mboxrd@z Thu Jan 1 00:00:00 1970 From: ng0 Subject: [PATCH 06/11] gnu: Add python2-openid. Date: Wed, 21 Dec 2016 11:47:14 +0000 Message-ID: <20161221114718.12679-7-ng0@libertad.pw> References: <20161221001039.3a6f6037@scratchpost.org> <20161221114718.12679-1-ng0@libertad.pw> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:35530) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cJfN4-0006CI-08 for guix-devel@gnu.org; Wed, 21 Dec 2016 06:47:46 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cJfN3-0002kT-4b for guix-devel@gnu.org; Wed, 21 Dec 2016 06:47:46 -0500 Received: from aibo.runbox.com ([91.220.196.211]:50065) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cJfN2-0002kB-UE for guix-devel@gnu.org; Wed, 21 Dec 2016 06:47:45 -0500 Received: from [10.9.9.211] (helo=mailfront11.runbox.com) by bars.runbox.com with esmtp (Exim 4.71) (envelope-from ) id 1cJfN1-0007LR-TY for guix-devel@gnu.org; Wed, 21 Dec 2016 12:47:43 +0100 In-Reply-To: <20161221114718.12679-1-ng0@libertad.pw> 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" To: guix-devel@gnu.org * gnu/packages/python.scm (python2-openid): New variable. --- gnu/packages/python.scm | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 3203bb421..a8ede93fd 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -5048,6 +5048,26 @@ features useful for text console applications.") (define-public python2-urwid (package-with-python2 python-urwid)) +(define-public python2-openid + (package + (name "python2-openid") + (version "2.2.5") + (source + (origin + (method url-fetch) + (uri (pypi-uri "python-openid" version)) + (sha256 + (base32 + "1vvhxlghjan01snfdc4k7ykd80vkyjgizwgg9bncnin8rqz1ricj")))) + (build-system python-build-system) + (arguments + ;; Python 3 support is in `python3-openid`, a separate package. + `(#:python ,python-2)) + (home-page "https://github.com/openid/python-openid") + (synopsis "OpenID support for servers and consumers") + (description "OpenID library for Python.") + (license license:asl2.0))) + (define-public python-urwidtrees (package (name "python-urwidtrees") -- 2.11.0