about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--gn/packages/genenetwork.scm1
-rw-r--r--gn/packages/python.scm22
2 files changed, 23 insertions, 0 deletions
diff --git a/gn/packages/genenetwork.scm b/gn/packages/genenetwork.scm
index 514a85c..4017225 100644
--- a/gn/packages/genenetwork.scm
+++ b/gn/packages/genenetwork.scm
@@ -193,6 +193,7 @@ location of a putative QTL.")
               ("gemma-git-gn2" ,gemma-git-gn2)
               ("gemma-wrapper" ,gemma-wrapper)
               ("genenetwork2-files-small" ,genenetwork2-files-small)
+              ("gunicorn" ,gunicorn)
               ("plink-ng-gn" ,plink-ng-gn)
               ("pylmm-gn2" ,pylmm-gn2)
               ("nginx" ,nginx)
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))