diff options
author | Vinicius Monego <monego@posteo.net> | 2021-04-20 05:22:45 +0000 |
---|---|---|
committer | Lars-Dominik Braun <lars@6xq.net> | 2021-05-08 11:27:50 +0200 |
commit | dd05a93743bef6bb946d03cd0c665e3b1d62a116 (patch) | |
tree | c2e802e898bdbe4ee3babdba868eec57a7b1398b | |
parent | 768732eb2f193868f6114e9f4f6cc0b1a8c84411 (diff) |
gnu: python-language-server: Relax dependency versions.
* gnu/packages/python-xyz.scm (python-language-server)[arguments]: Add phase
to relax pycodestyle and pyflakes version.
-rw-r--r-- | gnu/packages/python-xyz.scm | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 542abf6dde..d86a6237bb 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -4513,6 +4513,12 @@ Server (PLS).") (arguments `(#:phases (modify-phases %standard-phases + (add-after 'unpack 'relax-deps + (lambda _ + (substitute* "setup.py" (("pycodestyle>=2.6.0,<2.7.0") + "pycodestyle")) + (substitute* "setup.py" (("pyflakes>=2.2.0,<2.3.0") "pyflakes")) + #t)) (add-before 'check 'set-HOME (lambda _ (setenv "HOME" "/tmp") #t)) (replace 'check |