diff options
author | Marius Bakke <marius@gnu.org> | 2022-06-21 15:57:03 +0200 |
---|---|---|
committer | Marius Bakke <marius@gnu.org> | 2022-06-21 17:30:44 +0200 |
commit | c7738ffcadb6b8348a520d745a1eb7e91ee28524 (patch) | |
tree | b4addc0400e35726246a481295f30504140da6b5 /gnu | |
parent | a358602d35e71cbde9d390beeeebc08543ab3414 (diff) | |
download | guix-c7738ffcadb6b8348a520d745a1eb7e91ee28524.tar guix-c7738ffcadb6b8348a520d745a1eb7e91ee28524.tar.gz |
gnu: python-ipython-sql: Remove prettytable version constraint.
* gnu/packages/python-xyz.scm (python-ipython-sql)[arguments]: Add #:phases.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/python-xyz.scm | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 0fe436cbe5..72d144fdcf 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -8306,8 +8306,16 @@ cluster down and deletes the throwaway profile.") (sha256 (base32 "1r6rz8jgrqzhkf2flwjw75d96g8l7kykmx5wli3q1988w96391ip")))) (build-system python-build-system) - ;; Tests must run under IPython. - (arguments '(#:tests? #f)) + (arguments + (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 (list python-ipython python-ipython-genutils |