From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mathieu Lirzin Subject: Re: [PATCH 2/4] gnu: Add python-oslo.context. Date: Tue, 15 Sep 2015 18:36:54 +0200 Message-ID: <87bnd3abbt.fsf@openmailbox.org> References: <1442265803-26218-1-git-send-email-tipecaml@gmail.com> <1442265803-26218-3-git-send-email-tipecaml@gmail.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:37275) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZbtEF-0008Sz-Kj for guix-devel@gnu.org; Tue, 15 Sep 2015 12:37:12 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZbtEA-0002Qk-KB for guix-devel@gnu.org; Tue, 15 Sep 2015 12:37:11 -0400 Received: from smtp10.openmailbox.org ([62.4.1.44]:43568) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZbtEA-0002QN-6P for guix-devel@gnu.org; Tue, 15 Sep 2015 12:37:06 -0400 In-Reply-To: <1442265803-26218-3-git-send-email-tipecaml@gmail.com> (Cyril Roelandt's message of "Mon, 14 Sep 2015 23:23:21 +0200") 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-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: Cyril Roelandt Cc: guix-devel@gnu.org Cyril Roelandt writes: > * gnu/packages/openstack.scm (python-oslo.context, > python2-oslo.context): New variables. > --- > gnu/packages/openstack.scm | 31 +++++++++++++++++++++++++++++++ > 1 file changed, 31 insertions(+) > > diff --git a/gnu/packages/openstack.scm b/gnu/packages/openstack.scm > index 04ddbb3..1a2af79 100644 > --- a/gnu/packages/openstack.scm > +++ b/gnu/packages/openstack.scm > @@ -253,6 +253,37 @@ extensions.") > (define-public python2-oslo.config > (package-with-python2 python-oslo.config)) > > +(define-public python-oslo.context > + (package > + (name "python-oslo.context") > + (version "0.6.0") > + (source > + (origin > + (method url-fetch) > + (uri (string-append > + "https://pypi.python.org/packages/source/o/oslo.context/" > + "oslo.context-" version ".tar.gz")) > + (sha256 > + (base32 > + "16wr9qrkc3lb94ssb14qid4liza66x316fvzjw0izg67h1a0fm86")))) (sha256 (base32 "...")) > + (build-system python-build-system) > + (inputs > + `(("python-babel" ,python-babel) > + ("python-pbr" ,python-pbr) > + ("python-setuptools" ,python-setuptools) > + ;; Tests. > + ("python-oslotest" ,python-oslotest))) > + (home-page "http://launchpad.net/oslo") > + (synopsis "Oslo context library") > + (description > + "The Oslo context library has helpers to maintain useful information > +about a request context. The request context is usually populated in the WSGI ^^^ 2 spaces here. > +pipeline and used by various modules such as logging.") > + (license asl2.0))) > + > +(define-public python2-oslo.context > + (package-with-python2 python-oslo.context)) > + > (define-public python-oslo.i18n > (package > (name "python-oslo.i18n") Otherwise, LGTM. -- Mathieu Lirzin