From: Hartmut Goebel <h.goebel@crazy-compilers.com>
To: guix-devel@gnu.org
Subject: [PATCH] gnu: Add python-gunicorn and python2-gunicorn.
Date: Sun, 11 Sep 2016 22:50:35 +0200 [thread overview]
Message-ID: <1473627035-12350-1-git-send-email-h.goebel@crazy-compilers.com> (raw)
* 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
next reply other threads:[~2016-09-11 20:50 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-09-11 20:50 Hartmut Goebel [this message]
2016-09-12 7:48 ` [PATCH] gnu: Add python-gunicorn and python2-gunicorn Hartmut Goebel
2016-09-13 15:51 ` Leo Famulari
2016-09-13 19:22 ` Hartmut Goebel
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://guix.gnu.org/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1473627035-12350-1-git-send-email-h.goebel@crazy-compilers.com \
--to=h.goebel@crazy-compilers.com \
--cc=guix-devel@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/guix.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).