From mboxrd@z Thu Jan 1 00:00:00 1970 From: Christopher Allan Webber Subject: [PATCH 7/18] gnu: Add python-waitress. Date: Mon, 15 Feb 2016 15:28:22 -0800 Message-ID: <87h9h9sgdl.fsf@dustycloud.org> Mime-Version: 1.0 Content-Type: text/x-patch Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:33966) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aVSZ9-0003lX-2r for guix-devel@gnu.org; Mon, 15 Feb 2016 18:28:28 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aVSZ5-0008Ik-RW for guix-devel@gnu.org; Mon, 15 Feb 2016 18:28:27 -0500 Received: from dustycloud.org ([50.116.34.160]:39428) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aVSZ5-0008If-Ma for guix-devel@gnu.org; Mon, 15 Feb 2016 18:28:23 -0500 Received: from oolong (localhost [127.0.0.1]) by dustycloud.org (Postfix) with ESMTPS id 4AB3626676 for ; Mon, 15 Feb 2016 18:28:23 -0500 (EST) Content-Disposition: inline; filename=0007-gnu-Add-python-waitress.patch 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 >From 727723160ed0a9c960fdc0d84173f926ef0bb170 Mon Sep 17 00:00:00 2001 From: Christopher Allan Webber Date: Sat, 13 Feb 2016 18:57:11 -0800 Subject: [PATCH 07/18] gnu: Add python-waitress. * gnu/packages/python.scm (python-waitress, python2-waitress): New variables. --- gnu/packages/python.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index d7498dd..9c86e43 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -7684,3 +7684,28 @@ generating HTML.") (inherit (package-with-python2 (strip-python2-variant python-mako))) (inputs `(("python2-setuptools" ,python2-setuptools))))) + +(define-public python-waitress + (package + (name "python-waitress") + (version "0.8.10") + (source + (origin + (method url-fetch) + (uri (pypi-uri "waitress" version)) + (sha256 + (base32 + "017n9ra6vvmq9d5sfhdzyzr1mg15x2hj2dhm4pdlw98c1ypw2h3w")))) + (build-system python-build-system) + (home-page "https://github.com/Pylons/waitress") + (synopsis "Waitress WSGI server") + (description "Waitress is meant to be a production-quality pure-Python WSGI +server with very acceptable performance.") + (license zpl2.1) + (properties `((python2-variant . ,(delay python2-waitress)))))) + +(define-public python2-waitress + (package + (inherit (package-with-python2 + (strip-python2-variant python-waitress))) + (inputs `(("python2-setuptools" ,python2-setuptools))))) -- 2.6.3