summaryrefslogtreecommitdiff
path: root/gnu/packages/python-check.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2026-05-29 23:37:09 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-08-08 23:02:09 +0100
commit67bdbf66771e9c18ed55122b72300ebb26c8b468 (patch)
tree57407c1fb85f0f4a100f852afac44756f3c8a6aa /gnu/packages/python-check.scm
parent3cbaf03b5f80fe7a56b4408730af834fe212b8f3 (diff)
gnu: python-pyflakes: Update to 3.4.0.
* gnu/packages/python-check.scm (python-pyflakes): Update to 3.4.0. [source]: Switch to git-fetch. [arguments] <test-backend>: Use 'unittest. [native-inputs]: Remove python-pytest and python-wheel. Change-Id: I59966e6d2796c6345ea47ebac74113e3b04f8026
Diffstat (limited to 'gnu/packages/python-check.scm')
-rw-r--r--gnu/packages/python-check.scm17
1 files changed, 10 insertions, 7 deletions
diff --git a/gnu/packages/python-check.scm b/gnu/packages/python-check.scm
index f682de5fe1d..802781564b7 100644
--- a/gnu/packages/python-check.scm
+++ b/gnu/packages/python-check.scm
@@ -2198,18 +2198,21 @@ attachments).
2198(define-public python-pyflakes 2198(define-public python-pyflakes
2199 (package 2199 (package
2200 (name "python-pyflakes") 2200 (name "python-pyflakes")
2201 (version "3.2.0") 2201 (version "3.4.0")
2202 (source 2202 (source
2203 (origin 2203 (origin
2204 (method url-fetch) 2204 (method git-fetch)
2205 (uri (pypi-uri "pyflakes" version)) 2205 (uri (git-reference
2206 (url "https://github.com/PyCQA/pyflakes")
2207 (commit version)))
2208 (file-name (git-file-name name version))
2206 (sha256 2209 (sha256
2207 (base32 "0gxgz0kg008pgmjk1dn8z3g00dfa9pc3f80pm6r1yqjly4zn0q8w")))) 2210 (base32 "0ag6j4flayslbxcqipmfy5njawzy66py71p63mpjsys4gy70jhg1"))))
2208 (build-system pyproject-build-system) 2211 (build-system pyproject-build-system)
2212 (arguments
2213 (list #:test-backend #~'unittest))
2209 (native-inputs 2214 (native-inputs
2210 (list python-pytest 2215 (list python-setuptools))
2211 python-setuptools
2212 python-wheel))
2213 (home-page "https://github.com/PyCQA/pyflakes") 2216 (home-page "https://github.com/PyCQA/pyflakes")
2214 (synopsis "Passive checker of Python programs") 2217 (synopsis "Passive checker of Python programs")
2215 (description 2218 (description