gnu: python-pyflakes: Move to pyproejct-build-system.

* gnu/packages/python-xyz.scm (python-pyflakes): Fix indentation.
[build-system]: Swap to pyproject-build-system.
[native-inputs]: Add python-pytest, python-setuptools, and python-wheel.

Change-Id: Ie27427a1e15fe5ecf6b29f4e13e26836187c4480
This commit is contained in:
Sharlatan Hellseher 2024-11-28 20:09:24 +00:00
parent 1697c8e605
commit e0759d8413
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -15220,17 +15220,20 @@ use of the Meson build system.")
(name "python-pyflakes") (name "python-pyflakes")
(version "3.2.0") (version "3.2.0")
(source (source
(origin (origin
(method url-fetch) (method url-fetch)
(uri (pypi-uri "pyflakes" version)) (uri (pypi-uri "pyflakes" version))
(sha256 (sha256
(base32 (base32 "0gxgz0kg008pgmjk1dn8z3g00dfa9pc3f80pm6r1yqjly4zn0q8w"))))
"0gxgz0kg008pgmjk1dn8z3g00dfa9pc3f80pm6r1yqjly4zn0q8w")))) (build-system pyproject-build-system)
(build-system python-build-system) (native-inputs
(list python-pytest
python-setuptools
python-wheel))
(home-page "https://github.com/PyCQA/pyflakes") (home-page "https://github.com/PyCQA/pyflakes")
(synopsis "Passive checker of Python programs") (synopsis "Passive checker of Python programs")
(description (description
"Pyflakes statically checks Python source code for common errors.") "Pyflakes statically checks Python source code for common errors.")
(license license:expat))) (license license:expat)))
(define-public python-mccabe (define-public python-mccabe