mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05: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"))))
|
||||
(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
|
||||
|
|
Loading…
Reference in a new issue