aboutsummaryrefslogtreecommitdiff
path: root/gn/packages/python.scm
diff options
context:
space:
mode:
authorEfraim Flashner2019-12-09 16:26:48 -0600
committerEfraim Flashner2019-12-09 16:51:02 -0600
commitad69207224c6b1c5a32849e1fbc005e85f5fabf5 (patch)
tree92cc3b26cdd70de59bf80c70879ec8322223fa2d /gn/packages/python.scm
parente723dfd8f3b5f8bca2e9f4a16918d981ffb91774 (diff)
downloadguix-bioinformatics-ad69207224c6b1c5a32849e1fbc005e85f5fabf5.tar.gz
gn: Remove gunicorn.
This package was upstreamed.
Diffstat (limited to 'gn/packages/python.scm')
-rw-r--r--gn/packages/python.scm30
1 files changed, 0 insertions, 30 deletions
diff --git a/gn/packages/python.scm b/gn/packages/python.scm
index 0b32ba4..2336cc9 100644
--- a/gn/packages/python.scm
+++ b/gn/packages/python.scm
@@ -292,36 +292,6 @@ until a value is returned.")
(define-public python2-inotify
(package-with-python2 python-inotify))
-
-(define-public gunicorn ; guix candidate
-(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)
- (inputs
- `(("python2-eventlet" ,python2-eventlet)
- ("python2-gevent" ,python2-gevent)))
- (propagated-inputs
- `(("python2" ,python-2)
- ("inotify-tools" ,inotify-tools)))
- (arguments `(
- #:python ,python-2 ; GN2 is still python2
- #:tests? #f)) ;; No tests.
- (home-page "http://gunicorn.org")
- (synopsis
- ".")
- (description
- ".")
- (license license:expat))
-)
-
(define-public python2-flask-sqlalchemy
(package-with-python2 python-flask-sqlalchemy))