diff options
author | pjotrp | 2017-11-09 16:53:06 +0000 |
---|---|---|
committer | pjotrp | 2017-11-09 16:53:06 +0000 |
commit | 6356409aa3631453a1fb9291858753ecbc0f6444 (patch) | |
tree | ce60a3161a370fa05c067a7d8b59a0e733500a96 | |
parent | 6b78041ea076507be5999cb7c12bee982b371710 (diff) | |
download | guix-bioinformatics-6356409aa3631453a1fb9291858753ecbc0f6444.tar.gz |
Added python-gunicorn
-rw-r--r-- | gn/packages/genenetwork.scm | 1 | ||||
-rw-r--r-- | gn/packages/python.scm | 22 |
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)) |