diff options
author | Marius Bakke <marius@gnu.org> | 2022-01-12 14:45:04 +0100 |
---|---|---|
committer | Marius Bakke <marius@gnu.org> | 2022-01-12 23:50:15 +0100 |
commit | 7994cfce3d46f8a200475f75fd61a629f1830f9d (patch) | |
tree | d05eea9703588e45b274999615cb9d946b088325 /gnu | |
parent | 8622e0a721336f740531055dee575b60998affa7 (diff) | |
download | guix-7994cfce3d46f8a200475f75fd61a629f1830f9d.tar.gz guix-7994cfce3d46f8a200475f75fd61a629f1830f9d.zip |
gnu: python-flake8-implicit-str-concat: Permit newer attrs.
* gnu/packages/python-xyz.scm (python-flake8-implicit-str-concat)[arguments]:
Add phase.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/python-xyz.scm | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index ef1cd55d89..799c813b6e 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -10344,6 +10344,14 @@ These should be used in preference to using a backslash for line continuation. (sha256 (base32 "1v0y29xlmbr2q12a4nnpm1dm9aw1mjiys1x8jif4z8c90d63cqm6")))) (build-system python-build-system) + (arguments + '(#:tests? #f ;no tests + #:phases (modify-phases %standard-phases + (add-after 'unpack 'loosen-requirements + (lambda _ + ;; Permit newer versions of attrs. Remove for >0.2. + (substitute* "setup.py" + ((", <21") ""))))))) (propagated-inputs (list python-attrs python-more-itertools)) (home-page "https://github.com/keisheiled/flake8-implicit-str-concat") |