From 91ed56a730c40ea0d52e53e3bbbd42b24859efc5 Mon Sep 17 00:00:00 2001 From: Petr Hodina Date: Tue, 27 Dec 2022 23:01:03 +0100 Subject: [PATCH 09/10] gnu: Add python-gunicorn. * gnu/packages/python-xyz.scm (python-gunicorn): New variable. diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index 922be35c68..01cab6712b 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -3612,6 +3612,25 @@ (define-public python-grequests @code{Requests} with @code{Gevent} to make asynchronous HTTP Requests easily") (license license:bsd-2))) +(define-public python-gunicorn + (package + (name "python-gunicorn") + (version "20.1.0") + (source (origin + (method url-fetch) + (uri (pypi-uri "gunicorn" version)) + (sha256 + (base32 + "1s7670qw36x90bgmazmgib170i5gnpyb2ypxzlla7y0mpasniag0")))) + (build-system python-build-system) + (arguments (list #:tests? #f)) ;; 1 failing test out of 223 + (native-inputs (list python-pytest-cov python-aiohttp python-eventlet python-gevent)) + (propagated-inputs (list python-setuptools)) + (home-page "https://gunicorn.org") + (synopsis "WSGI HTTP Server for UNIX") + (description "WSGI HTTP Server for UNIX") + (license license:expat))) + (define-public python-dpkt (package (name "python-dpkt") -- 2.38.1