gnu: Remove python2-flake8.

* gnu/packages/python-xyz.scm (python2-flake8): Delete variable.
This commit is contained in:
Maxim Cournoyer 2022-04-29 23:13:49 -04:00
parent 4392bf589f
commit 87465a718a
No known key found for this signature in database
GPG key ID: 1260E46482E63562

View file

@ -10862,35 +10862,20 @@ (define-public python-flake8
"0y732h02n2aih8gzyfj4bbhg4jgahyv84mjwfindk2g6w45rka0s"))))
(build-system python-build-system)
(arguments
`(#:phases
(modify-phases %standard-phases
(replace 'check
(lambda* (#:key inputs outputs #:allow-other-keys)
(add-installed-pythonpath inputs outputs)
(invoke "pytest" "-v"))))))
(propagated-inputs
(list python-pycodestyle python-entrypoints python-pyflakes
python-mccabe))
(native-inputs
(list python-mock python-pytest))
`(#:phases (modify-phases %standard-phases
(replace 'check
(lambda* (#:key inputs outputs #:allow-other-keys)
(add-installed-pythonpath inputs outputs)
(invoke "pytest" "-v"))))))
(propagated-inputs (list python-pycodestyle python-entrypoints
python-pyflakes python-mccabe))
(native-inputs (list python-mock python-pytest))
(home-page "https://gitlab.com/pycqa/flake8")
(synopsis
"The modular source code checker: pep8, pyflakes and co")
(synopsis "The modular source code checker: pep8, pyflakes and co")
(description
"Flake8 is a wrapper around PyFlakes, pep8 and python-mccabe.")
(properties `((python2-variant . ,(delay python2-flake8))))
"Flake8 is a wrapper around PyFlakes, pep8 and python-mccabe.")
(license license:expat)))
(define-public python2-flake8
(let ((base (package-with-python2 (strip-python2-variant python-flake8))))
(package/inherit base
(propagated-inputs
`(("python2-configparser" ,python2-configparser)
("python2-enum34" ,python2-enum34)
("python2-functools32" ,python2-functools32)
("python2-typing" ,python2-typing)
,@(package-propagated-inputs base))))))
(define-public python-flake8-3.8
(package
(inherit python-flake8)