diff options
author | Marius Bakke <marius@gnu.org> | 2022-01-11 00:01:08 +0100 |
---|---|---|
committer | Marius Bakke <marius@gnu.org> | 2022-01-11 18:36:38 +0100 |
commit | d89e7465d1b9b6a88d8501b6870322580b793659 (patch) | |
tree | c38a23b7d0b7a76d365843bc293ad72af14784f2 /gnu | |
parent | 78a57d8b7a0ac9ba0a73af83638752409d792706 (diff) | |
download | guix-d89e7465d1b9b6a88d8501b6870322580b793659.tar.gz |
gnu: mycli: Placate sanity check.
* gnu/packages/databases.scm (mycli)[arguments]: Add phase.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/databases.scm | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm index 6058e75109..b62a8a0e6b 100644 --- a/gnu/packages/databases.scm +++ b/gnu/packages/databases.scm @@ -666,7 +666,13 @@ auto-completion and syntax highlighting.") (base32 "0rij9nw20zhqr7cqnkm8daw8b1wdc9zb6ny1ji9qz5557nz9i3bl")))) (build-system python-build-system) (arguments - `(#:tests? #f)) ; tests expect a running MySQL + '(#:tests? #f ; tests expect a running MySQL + #:phases (modify-phases %standard-phases + (add-after 'unpack 'loosen-requirements + (lambda _ + ;; Permit newer versions of sqlparse. + (substitute* "setup.py" + (("<0\\.4\\.0") "<0.5.0"))))))) (propagated-inputs (list python-cli-helpers python-click |