From mboxrd@z Thu Jan 1 00:00:00 1970 From: ng0 Subject: [PATCH 07/11] gnu: Add python-openid-cla. Date: Wed, 21 Dec 2016 11:47:15 +0000 Message-ID: <20161221114718.12679-8-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]:35653) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cJfND-0006I6-Dq for guix-devel@gnu.org; Wed, 21 Dec 2016 06:47:56 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cJfNC-0002pp-JO for guix-devel@gnu.org; Wed, 21 Dec 2016 06:47:55 -0500 Received: from aibo.runbox.com ([91.220.196.211]:50084) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cJfNC-0002pH-CL for guix-devel@gnu.org; Wed, 21 Dec 2016 06:47:54 -0500 Received: from [10.9.9.212] (helo=mailfront12.runbox.com) by bars.runbox.com with esmtp (Exim 4.71) (envelope-from ) id 1cJfNB-0007Lv-Aw for guix-devel@gnu.org; Wed, 21 Dec 2016 12:47:53 +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 (python-openid-cla): New variable. --- gnu/packages/python.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index a8ede93fd..445df2cbc 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -5301,6 +5301,28 @@ another XPath engine to find the matching elements in an XML or HTML document.") (define-public python2-cssselect (package-with-python2 python-cssselect)) +(define-public python-openid-cla + (package + (name "python-openid-cla") + (version "1.2") + (source + (origin + (method url-fetch) + (uri (pypi-uri "python-openid-cla" version)) + (sha256 + (base32 + "102hy2qisvjxp5s0v9lvwqi4f2dk0dhns40vjgn008yxc7k0h3cr")))) + (build-system python-build-system) + (home-page "https://github.com/puiterwijk/python-openid-cla/") + (synopsis "Implementation of the OpenID cla extension for python-openid") + (description + "@code{openid-cla} is an implementation of the OpenID cla +extension for python-openid.") + (license license:bsd-3))) + +(define-public python2-openid-cla + (package-with-python2 python-openid-cla)) + (define-public python-netifaces (package (name "python-netifaces") -- 2.11.0