mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 22:16:32 +01:00
gnu: mycli: Placate sanity check.
* gnu/packages/databases.scm (mycli)[arguments]: Add phase.
This commit is contained in:
parent
78a57d8b7a
commit
d89e7465d1
1 changed files with 7 additions and 1 deletions
|
@ -666,7 +666,13 @@ (define-public mycli
|
||||||
(base32 "0rij9nw20zhqr7cqnkm8daw8b1wdc9zb6ny1ji9qz5557nz9i3bl"))))
|
(base32 "0rij9nw20zhqr7cqnkm8daw8b1wdc9zb6ny1ji9qz5557nz9i3bl"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(arguments
|
(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
|
(propagated-inputs
|
||||||
(list python-cli-helpers
|
(list python-cli-helpers
|
||||||
python-click
|
python-click
|
||||||
|
|
Loading…
Reference in a new issue