From mboxrd@z Thu Jan 1 00:00:00 1970 From: ng0 Subject: [PATCH 08/11] gnu: Add python-openid-teams. Date: Wed, 14 Dec 2016 12:25:23 +0000 Message-ID: <20161214122526.4458-9-ng0@libertad.pw> References: <20161212151837.GA24973@jasmine> <20161214122526.4458-1-ng0@libertad.pw> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:49775) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cH8di-0005Zu-8j for guix-devel@gnu.org; Wed, 14 Dec 2016 07:26:31 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cH8dh-0005ZT-2J for guix-devel@gnu.org; Wed, 14 Dec 2016 07:26:30 -0500 Received: from aibo.runbox.com ([91.220.196.211]:60791) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cH8dg-0005Z9-RH for guix-devel@gnu.org; Wed, 14 Dec 2016 07:26:28 -0500 Received: from [10.9.9.210] (helo=mailfront10.runbox.com) by bars.runbox.com with esmtp (Exim 4.71) (envelope-from ) id 1cH8df-00012O-KS for guix-devel@gnu.org; Wed, 14 Dec 2016 13:26:27 +0100 In-Reply-To: <20161214122526.4458-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-teams): New variable. --- gnu/packages/python.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 8246a33d5..e7e10dc90 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -5334,6 +5334,31 @@ extension for python-openid.") (define-public python2-openid-cla (package-with-python2 python-openid-cla)) +(define-public python-openid-teams + (package + (name "python-openid-teams") + (version "1.1") + (source + (origin + (method url-fetch) + (uri (string-append "https://github.com/puiterwijk/" + "python-openid-teams/archive/v" + version ".tar.gz")) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "08m26gsikibfawr5hn01gh8q2f9csrwjqi9jliyln4cdwvz318xw")))) + (build-system python-build-system) + (home-page "https://github.com/puiterwijk/python-openid-teams/") + (synopsis "Implementation of the OpenID teams extension for python-openid") + (description + "@code{openid-teams} is an implementation of the OpenID +teams extension for python-openid.") + (license license:bsd-3))) + +(define-public python2-openid-teams + (package-with-python2 python-openid-teams)) + (define-public python-netifaces (package (name "python-netifaces") -- 2.11.0