aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2024-11-28 20:09:24 +0000
committerSharlatan Hellseher <sharlatanus@gmail.com>2024-12-13 20:28:40 +0000
commite0759d8413f5d2ccb880ab895c70bc33d266d1e1 (patch)
treee5384db28f7786573afa60b68857b01da21510cd
parent1697c8e60512d34398422892e2bd8891cb83752f (diff)
downloadguix-e0759d8413f5d2ccb880ab895c70bc33d266d1e1.tar.gz
guix-e0759d8413f5d2ccb880ab895c70bc33d266d1e1.zip
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
-rw-r--r--gnu/packages/python-xyz.scm19
1 files changed, 11 insertions, 8 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 6ff38e6cb6..9674b033d3 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -15220,17 +15220,20 @@ use of the Meson build system.")
(name "python-pyflakes")
(version "3.2.0")
(source
- (origin
- (method url-fetch)
- (uri (pypi-uri "pyflakes" version))
- (sha256
- (base32
- "0gxgz0kg008pgmjk1dn8z3g00dfa9pc3f80pm6r1yqjly4zn0q8w"))))
- (build-system python-build-system)
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "pyflakes" version))
+ (sha256
+ (base32 "0gxgz0kg008pgmjk1dn8z3g00dfa9pc3f80pm6r1yqjly4zn0q8w"))))
+ (build-system pyproject-build-system)
+ (native-inputs
+ (list python-pytest
+ python-setuptools
+ python-wheel))
(home-page "https://github.com/PyCQA/pyflakes")
(synopsis "Passive checker of Python programs")
(description
- "Pyflakes statically checks Python source code for common errors.")
+ "Pyflakes statically checks Python source code for common errors.")
(license license:expat)))
(define-public python-mccabe