mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-07 19:39:34 +01:00
gnu: Replace python-pyflakes-0.8.1 with python-pyflakes-1.2.
* gnu/packages/python-xyz.scm (python-pyflakes-0.8.1): Remove variable. (python-pyflakes-1.2): New variable. * gnu/packages/openstack.scm (python-hacking)[propagated-inputs]: Replace python-pyflakes-0.8.1 with python-pyflakes-1.2.
This commit is contained in:
parent
37130eccd2
commit
a655924009
2 changed files with 22 additions and 17 deletions
|
@ -144,7 +144,7 @@ manner.")
|
|||
("python-mccabe-0.2.1" ,python-mccabe-0.2.1)
|
||||
("python-pbr" ,python-pbr)
|
||||
("python-pep8-1.5.7" ,python-pep8-1.5.7)
|
||||
("python-pyflakes-0.8.1" ,python-pyflakes-0.8.1)
|
||||
("python-pyflakes-1.2" ,python-pyflakes-1.2)
|
||||
("python-six" ,python-six)))
|
||||
(native-inputs
|
||||
`( ;; Tests
|
||||
|
|
|
@ -7380,6 +7380,27 @@ PEP 8.")
|
|||
(define-public python2-pyflakes
|
||||
(package-with-python2 python-pyflakes))
|
||||
|
||||
;; Flake8 2.6 requires an older version of pyflakes.
|
||||
;; This should be removed ASAP.
|
||||
(define-public python-pyflakes-1.2
|
||||
(package (inherit python-pyflakes)
|
||||
(version "1.2.3")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "pyflakes" version))
|
||||
(sha256
|
||||
(base32
|
||||
"17hkw8yd44cr8fz13phy4aih3r5j2p7ild4zlvqdh2c8dmiinjif"))))
|
||||
(arguments
|
||||
'(#:phases
|
||||
(modify-phases %standard-phases
|
||||
;; This one test fails.
|
||||
(replace 'check
|
||||
(lambda _ (invoke "pytest" "-vv" "-k" "not test_f_string"))))))
|
||||
(native-inputs
|
||||
`(("python-pytest" ,python-pytest)))))
|
||||
|
||||
(define-public python-mccabe
|
||||
(package
|
||||
(name "python-mccabe")
|
||||
|
@ -7438,22 +7459,6 @@ complexity of Python source code.")
|
|||
(define-public python2-pep8-1.5.7
|
||||
(package-with-python2 python-pep8-1.5.7))
|
||||
|
||||
;; Flake8 2.4.1 requires an older version of pyflakes.
|
||||
;; This should be removed ASAP.
|
||||
(define-public python-pyflakes-0.8.1
|
||||
(package (inherit python-pyflakes)
|
||||
(version "0.8.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "pyflakes" version))
|
||||
(sha256
|
||||
(base32
|
||||
"0sbpq6pqm1i9wqi41mlfrsc5rk92jv4mskvlyxmnhlbdnc80ma1z"))))
|
||||
(arguments
|
||||
;; XXX Tests not compatible with Python 3.5.
|
||||
'(#:tests? #f))))
|
||||
|
||||
(define-public python-flake8
|
||||
(package
|
||||
(name "python-flake8")
|
||||
|
|
Loading…
Add table
Reference in a new issue