mirror of
https://https.git.savannah.gnu.org/git/guix.git/
synced 2025-07-15 03:20:43 +02:00
gnu: python-ipython-sql: Remove prettytable version constraint.
* gnu/packages/python-xyz.scm (python-ipython-sql)[arguments]: Add #:phases.
This commit is contained in:
parent
a358602d35
commit
c7738ffcad
1 changed files with 10 additions and 2 deletions
|
@ -8306,8 +8306,16 @@ cluster down and deletes the throwaway profile.")
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "1r6rz8jgrqzhkf2flwjw75d96g8l7kykmx5wli3q1988w96391ip"))))
|
(base32 "1r6rz8jgrqzhkf2flwjw75d96g8l7kykmx5wli3q1988w96391ip"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
;; Tests must run under IPython.
|
(arguments
|
||||||
(arguments '(#:tests? #f))
|
(list #:tests? #f ;must run under IPython
|
||||||
|
#:phases
|
||||||
|
#~(modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'permit-newer-prettytable
|
||||||
|
;; See https://github.com/catherinedevlin/ipython-sql/issues/202
|
||||||
|
(lambda _
|
||||||
|
(substitute* "setup.py"
|
||||||
|
(("prettytable<1")
|
||||||
|
"prettytable")))))))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
(list python-ipython
|
(list python-ipython
|
||||||
python-ipython-genutils
|
python-ipython-genutils
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue