[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 2/9] gnu: Add python-gunicorn.
From: |
contact . ng0 |
Subject: |
[PATCH 2/9] gnu: Add python-gunicorn. |
Date: |
Sat, 4 Feb 2017 16:34:59 +0000 |
From: ng0 <address@hidden>
* gnu/packages/web.scm (python-gunicorn): New variable.
---
gnu/packages/web.scm | 28 +++++++++++++++++++++++++++-
1 file changed, 27 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm
index 8cc80a2c4..1803f58e9 100644
--- a/gnu/packages/web.scm
+++ b/gnu/packages/web.scm
@@ -13,7 +13,7 @@
;;; Copyright © 2016 Rene Saavedra <address@hidden>
;;; Copyright © 2016 Ben Woodcroft <address@hidden>
;;; Copyright © 2016 Clément Lassieur <address@hidden>
-;;; Copyright © 2016 ng0 <address@hidden>
+;;; Copyright © 2016, 2017 ng0 <address@hidden>
;;; Copyright © 2016 Arun Isaac <address@hidden>
;;; Copyright © 2016 Tobias Geerinckx-Rice <address@hidden>
;;; Copyright © 2016 Bake Timmons <address@hidden>
@@ -4018,3 +4018,29 @@ service for that request. Requests are made using port
numbers as identifiers
and xinetd usually launches another daemon to handle the request. It can be
used to start services with both privileged and non-privileged port numbers.")
(license (l:fsf-free "file://COPYRIGHT"))))
+
+(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
+ ;; XXX: Tests require older versions of pytest-cov and other packages.
+ `(#:tests? #f))
+ (inputs
+ `(("python-sphinx" ,python-sphinx)))
+ (home-page "http://gunicorn.org")
+ (synopsis "WSGI HTTP Server")
+ (description
+ "Gunicorn ('Green Unicorn') is a WSGI HTTP Server.")
+ (license l:expat)))
+
+(define-public python2-gunicorn
+ (package-with-python2 python-gunicorn))
--
2.11.0
- Some searx requirements, contact . ng0, 2017/02/04
- [PATCH 1/9] gnu: python-dateutils-2: Update to 2.5.3., contact . ng0, 2017/02/04
- [PATCH 9/9] gnu: python-requests: Add python-pysocks to propagated-inputs., contact . ng0, 2017/02/04
- [PATCH 4/9] gnu: Add python-pytest-httpbin., contact . ng0, 2017/02/04
- [PATCH 7/9] gnu: python-pytest: Update to 3.0.5., contact . ng0, 2017/02/04
- [PATCH 3/9] gnu: Add python-httpbin., contact . ng0, 2017/02/04
- [PATCH 2/9] gnu: Add python-gunicorn.,
contact . ng0 <=
- [PATCH 8/9] gnu: python-requests: Update to 2.12.4., contact . ng0, 2017/02/04
- [PATCH 6/9] gnu: Add python-pytest-httpbin-0.0.7., contact . ng0, 2017/02/04
- [PATCH 5/9] gnu: Add python-pysocks., contact . ng0, 2017/02/04
- Re: Some searx requirements, ng0, 2017/02/04