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