From mboxrd@z Thu Jan 1 00:00:00 1970 From: Hartmut Goebel Subject: [PATCH] gnu: Add python-gunicorn and python2-gunicorn. Date: Sun, 11 Sep 2016 22:50:35 +0200 Message-ID: <1473627035-12350-1-git-send-email-h.goebel@crazy-compilers.com> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:39185) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bjBiA-0006S8-3n for guix-devel@gnu.org; Sun, 11 Sep 2016 16:50:47 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bjBi4-0005vM-4d for guix-devel@gnu.org; Sun, 11 Sep 2016 16:50:45 -0400 Received: from mail-out.m-online.net ([212.18.0.9]:33024) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bjBi3-0005uw-L9 for guix-devel@gnu.org; Sun, 11 Sep 2016 16:50:39 -0400 Received: from frontend01.mail.m-online.net (unknown [192.168.8.182]) by mail-out.m-online.net (Postfix) with ESMTP id 3sXNPV4C4Vz3hjgD for ; Sun, 11 Sep 2016 22:50:38 +0200 (CEST) Received: from localhost (dynscan1.mnet-online.de [192.168.6.68]) by mail.m-online.net (Postfix) with ESMTP id 3sXNPV2zDmzvkVZ for ; Sun, 11 Sep 2016 22:50:38 +0200 (CEST) Received: from mail.mnet-online.de ([192.168.8.182]) by localhost (dynscan1.mail.m-online.net [192.168.6.68]) (amavisd-new, port 10024) with ESMTP id 0BfVuGuSAiqI for ; Sun, 11 Sep 2016 22:50:36 +0200 (CEST) Received: from hermia.goebel-consult.de (ppp-188-174-144-124.dynamic.mnet-online.de [188.174.144.124]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by mail.mnet-online.de (Postfix) with ESMTPS for ; Sun, 11 Sep 2016 22:50:36 +0200 (CEST) Received: from thisbe.fritz.box (thisbe.fritz.box [192.168.110.23]) by hermia.goebel-consult.de (Postfix) with ESMTP id 43F9D6051F for ; Sun, 11 Sep 2016 22:50:36 +0200 (CEST) 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/web.scm (python-gunicorn, python2-gunicorn): New variables. --- gnu/packages/web.scm | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm index 20c7d12..e639d28 100644 --- a/gnu/packages/web.scm +++ b/gnu/packages/web.scm @@ -3633,3 +3633,51 @@ provides a unix command line interface to a variety of popular www search engine and similar services.") (home-page "https://surfraw.alioth.debian.org/") (license l:public-domain))) + +(define-public python-gunicorn + (package + (name "python-gunicorn") + (version "19.6.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "gunicorn" version)) + (sha256 + (base32 + "065n5z91607q4l8wncqkz297cdcb60cz8wnyxy88wk4as4b6jgw1")))) + (build-system python-build-system) + (arguments + '(#:phases + (modify-phases %standard-phases + (add-before 'check 'remove-requirements + ; setup.py reads test-requirements from a file which is + ; pinning to other versions then guix provides. This also + ; enforces optional packages like pytst-cov. So clean the + ; list. + (lambda _ + (substitute* "requirements_test.txt" + ((".*") ""))))))) + (native-inputs + `(("python-pytest" ,python-pytest) + ;("python-pytest-cov" ,python-pytest-cov) ; optional + ("python-setuptools" ,python-setuptools))) + (home-page "http://gunicorn.org/") + (synopsis "Python WSGI HTTP Server for UNIX") + (description "Gunicorn ‘Green Unicorn’ is a Python WSGI HTTP +Server for UNIX. It’s a pre-fork worker model ported from Ruby’s +Unicorn project. The Gunicorn server is broadly compatible with +various web frameworks, simply implemented, light on server resources, +and fairly speedy.") + (license license:expat) + (properties `((python2-variant . ,(delay python2-gunicorn)))))) + +(define-public python2-gunicorn + (let ((base (package-with-python2 + (strip-python2-variant python-gunicorn)))) + ; Note: byte-compiling gunicorn/workers/_gaiohttp.py with Python 2 + ; fails, but this module will be available for Python 3 only + ; anyway. + (package + (inherit base) + (native-inputs `(("python2-mock" ,python2-mock) + ,@(package-native-inputs base)))))) -- 2.7.4