diff options
author | BonfaceKilz | 2021-08-16 20:15:19 +0300 |
---|---|---|
committer | BonfaceKilz | 2021-08-16 20:15:19 +0300 |
commit | 55e6f9dd0d70f2e1a10a16353eee77af22ae92a6 (patch) | |
tree | 8eb2656cedea30a3d7810571d5bdff2dd013fc62 | |
parent | fef68e9c5744e8bcbba44041f00b87e905b1e4f6 (diff) | |
download | guix-bioinformatics-55e6f9dd0d70f2e1a10a16353eee77af22ae92a6.tar.gz |
gn: Add python-flask-debugtoolbar.
* gn/packages/python.scm (python-flask-debugtoolbar): New variable.
-rw-r--r-- | gn/packages/python.scm | 27 |
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))) |