diff options
-rw-r--r-- | gnu/packages/python-web.scm | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index 785669410b..ac9245ac7b 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -4163,6 +4163,12 @@ addon modules.") (arguments `(#:phases (modify-phases %standard-phases + (add-after 'unpack 'delete-bundled-test + (lambda _ + ;; Delete test copied from a third party package that fails + ;; with newer SQLAlchemy. This can be removed for 3.0. + ;; See <https://github.com/wtforms/wtforms/issues/696>. + (delete-file "tests/ext_sqlalchemy.py"))) (replace 'check (lambda* (#:key inputs outputs tests? #:allow-other-keys) (when tests? |