me
/
guix
Archived
1
0
Fork 0

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.
master
Ricardo Wurmus 2020-04-29 22:19:25 +02:00
parent 37130eccd2
commit a655924009
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
2 changed files with 22 additions and 17 deletions

View File

@ -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

View File

@ -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")