From 6356409aa3631453a1fb9291858753ecbc0f6444 Mon Sep 17 00:00:00 2001 From: pjotrp Date: Thu, 9 Nov 2017 16:53:06 +0000 Subject: Added python-gunicorn --- gn/packages/genenetwork.scm | 1 + gn/packages/python.scm | 22 ++++++++++++++++++++++ 2 files changed, 23 insertions(+) (limited to 'gn') 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)) -- cgit v1.2.3