From mboxrd@z Thu Jan 1 00:00:00 1970 From: Cyril Roelandt Subject: [PATCH 3/4] gnu: Add python-webob. Date: Mon, 14 Sep 2015 23:23:22 +0200 Message-ID: <1442265803-26218-4-git-send-email-tipecaml@gmail.com> References: <1442265803-26218-1-git-send-email-tipecaml@gmail.com> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:57040) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZbbEf-0003pE-0I for guix-devel@gnu.org; Mon, 14 Sep 2015 17:24:25 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZbbEa-0000GZ-AU for guix-devel@gnu.org; Mon, 14 Sep 2015 17:24:25 -0400 Received: from mail-wi0-f181.google.com ([209.85.212.181]:38381) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZbbEa-0000EK-56 for guix-devel@gnu.org; Mon, 14 Sep 2015 17:24:20 -0400 Received: by wiclk2 with SMTP id lk2so2164492wic.1 for ; Mon, 14 Sep 2015 14:23:32 -0700 (PDT) In-Reply-To: <1442265803-26218-1-git-send-email-tipecaml@gmail.com> 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: guix-devel@gnu.org * gnu/packages/python.scm (python-webob, python2-webob): New variables. --- gnu/packages/python.scm | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index c58d7f3..919573f 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -4853,3 +4853,30 @@ fractional seconds) of a clock which never goes backwards.") (define-public python2-monotonic (package-with-python2 python-monotonic)) + +(define-public python-webob + (package + (name "python-WebOb") + (version "1.5.0b0") + (source + (origin + (method url-fetch) + (uri (string-append + "https://pypi.python.org/packages/source/W/WebOb/WebOb-" + version ".tar.gz")) + (sha256 + (base32 + "140b3iczclk1j0405rvw5gxshqfkhcc8254fj520z3m23cwbql4a")))) + (build-system python-build-system) + (inputs + `(("python-nose" ,python-nose) + ("python-setuptools" ,python-setuptools))) + (home-page "http://webob.org/") + (synopsis "WSGI request and response object") + (description + "WebOb provides wrappers around the WSGI request environment, and an +object to help create WSGI responses.") + (license license:expat))) + +(define-public python2-webob + (package-with-python2 python-webob)) -- 2.1.4