diff options
author | BonfaceKilz | 2021-04-23 23:28:26 +0300 |
---|---|---|
committer | BonfaceKilz | 2021-04-23 23:28:26 +0300 |
commit | 3e4441b0ad9da6ceec53c5e75c48e46f290737ec (patch) | |
tree | e566c7af045717f18e7caf5c2ca4b3b3a2136de3 /gn | |
parent | 765ea0a57cdc89c5dabccf4a4a398b80c8267449 (diff) | |
download | guix-bioinformatics-3e4441b0ad9da6ceec53c5e75c48e46f290737ec.tar.gz |
gn: python: Add python2-flask
* gn/packages/python.scm: New variable. This was deprecated upstream.
Diffstat (limited to 'gn')
-rw-r--r-- | gn/packages/python.scm | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gn/packages/python.scm b/gn/packages/python.scm index d856205..aae5386 100644 --- a/gn/packages/python.scm +++ b/gn/packages/python.scm @@ -150,6 +150,12 @@ functions.") (define-public python2-inotify (package-with-python2 python-inotify)) +(define-public python2-flask + (let ((base (package-with-python2 python-flask))) + (package + (inherit base) + (arguments + `(#:tests? #f))))) (define-public python2-flask-sqlalchemy (package-with-python2 python-flask-sqlalchemy)) |