about summary refs log tree commit diff
path: root/gn
diff options
context:
space:
mode:
authorBonfaceKilz2021-08-16 20:15:19 +0300
committerBonfaceKilz2021-08-16 20:15:19 +0300
commit55e6f9dd0d70f2e1a10a16353eee77af22ae92a6 (patch)
tree8eb2656cedea30a3d7810571d5bdff2dd013fc62 /gn
parentfef68e9c5744e8bcbba44041f00b87e905b1e4f6 (diff)
downloadguix-bioinformatics-55e6f9dd0d70f2e1a10a16353eee77af22ae92a6.tar.gz
gn: Add python-flask-debugtoolbar.
* gn/packages/python.scm (python-flask-debugtoolbar): New variable.
Diffstat (limited to 'gn')
-rw-r--r--gn/packages/python.scm27
1 files changed, 27 insertions, 0 deletions
diff --git a/gn/packages/python.scm b/gn/packages/python.scm
index 4d3ee4d..b899eb4 100644
--- a/gn/packages/python.scm
+++ b/gn/packages/python.scm
@@ -1813,3 +1813,30 @@ window to get to RStudio for example.")
     (description
       "High level compatibility layer for multiple asynchronous event loop implementations")
     (license license:expat)))
+
+;; Waiting for this to be merged upstream then I'll remove it
+(define-public python-flask-debugtoolbar
+  (package
+    (name "python-flask-debugtoolbar")
+    (version "0.11.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "Flask-DebugToolbar" version))
+       (sha256
+        (base32
+         "1d5asdnk8bmh6m46pzg3i7677cjgdm9mlm3wcpk19q7dak9pjkiw"))))
+    (build-system python-build-system)
+    (propagated-inputs
+     `(("python-blinker" ,python-blinker)
+       ("python-flask" ,python-flask)
+       ("python-itsdangerous" ,python-itsdangerous)
+       ("python-werkzeug" ,python-werkzeug)))
+    (home-page
+     "https://flask-debugtoolbar.readthedocs.io/")
+    (synopsis
+     "A toolbar overlay for debugging Flask applications.")
+    (description
+     "This extension adds a toolbar overlay to Flask applications containing
+useful information for debugging.")
+    (license license:bsd-3)))