mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 22:38:07 -05:00
gnu: python-flake8-implicit-str-concat: Permit newer attrs.
* gnu/packages/python-xyz.scm (python-flake8-implicit-str-concat)[arguments]: Add phase.
This commit is contained in:
parent
8622e0a721
commit
7994cfce3d
1 changed files with 8 additions and 0 deletions
|
@ -10344,6 +10344,14 @@ (define-public python-flake8-implicit-str-concat
|
|||
(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")
|
||||
|
|
Loading…
Reference in a new issue