about summary refs log tree commit diff
path: root/gn/packages/python.scm
diff options
context:
space:
mode:
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))