aboutsummaryrefslogtreecommitdiff
path: root/gn/packages/python.scm
diff options
context:
space:
mode:
authorpjotrp2017-11-09 16:53:06 +0000
committerpjotrp2017-11-09 16:53:06 +0000
commit6356409aa3631453a1fb9291858753ecbc0f6444 (patch)
treece60a3161a370fa05c067a7d8b59a0e733500a96 /gn/packages/python.scm
parent6b78041ea076507be5999cb7c12bee982b371710 (diff)
downloadguix-bioinformatics-6356409aa3631453a1fb9291858753ecbc0f6444.tar.gz
Added python-gunicorn
Diffstat (limited to 'gn/packages/python.scm')
-rw-r--r--gn/packages/python.scm22
1 files changed, 22 insertions, 0 deletions
diff --git a/gn/packages/python.scm b/gn/packages/python.scm
index 9d85892..ca705d5 100644
--- a/gn/packages/python.scm
+++ b/gn/packages/python.scm
@@ -105,6 +105,28 @@ functions.")
(license license:expat))
)
+(define-public gunicorn ; guix candidate
+ ; python-plotly, python-requests, python-pytz
+(package
+ (name "gunicorn")
+ (version "19.7.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "gunicorn" version))
+ (sha256
+ (base32
+ "08mnl5l1p47q5wk38d7mafnhsqk50yba0l9kvc2vwrx61jgidqgf"))))
+ (build-system python-build-system)
+ (arguments `(#:tests? #f)) ;; No tests.
+ (home-page "http://gunicorn.org")
+ (synopsis
+ ".")
+ (description
+ ".")
+ (license license:expat))
+)
+
(define-public python2-flask-sqlalchemy ; guix?
(package-with-python2 python-flask-sqlalchemy))