diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2021-02-03 21:15:56 -0500 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2021-02-03 21:16:46 -0500 |
commit | 117a0de2406424a5fd85ae07f769a2aea8aab45e (patch) | |
tree | d01d507f4ce2cb09e71e21aed649a7674a4715d9 | |
parent | 4b562d46a530048ccc0c1d6bf33bd667a92c6780 (diff) |
gnu: python-radon: Please the sanity-check phase.
* gnu/packages/python-xyz.scm (python-radon)
[phases]{relax-requirements}: New phase.
-rw-r--r-- | gnu/packages/python-xyz.scm | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 7768891c6a..7a2b9eecc6 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -16093,6 +16093,13 @@ for more filetypes can be easily added by creating plugins for them.") (build-system python-build-system) (arguments `(#:phases (modify-phases %standard-phases + (add-after 'unpack 'relax-requirements + (lambda _ + (substitute* "setup.py" + ((".*'future'.*") + "") + (("colorama==0.4.1") + "colorama>=0.4.1")))) (replace 'check (lambda _ (invoke "python" "radon/tests/run.py")))))) |