guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit 7eb07a0f73ff9562a6fecbac34711e1f37cb1465
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Fri May 29 23:37:09 2026 +0100
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
---
gnu/packages/python-check.scm | 17 ++++++++++-------
1 file changed, 10 insertions(+), 7 deletions(-)
diff --git a/gnu/packages/python-check.scm b/gnu/packages/python-check.scm
index 92bba9741c..1d9af5c290 100644
--- a/gnu/packages/python-check.scm
+++ b/gnu/packages/python-check.scm
@@ -2198,18 +2198,21 @@ attachments).
(define-public python-pyflakes
(package
(name "python-pyflakes")
- (version "3.2.0")
+ (version "3.4.0")
(source
(origin
- (method url-fetch)
- (uri (pypi-uri "pyflakes" version))
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/PyCQA/pyflakes")
+ (commit version)))
+ (file-name (git-file-name name version))
(sha256
- (base32 "0gxgz0kg008pgmjk1dn8z3g00dfa9pc3f80pm6r1yqjly4zn0q8w"))))
+ (base32 "0ag6j4flayslbxcqipmfy5njawzy66py71p63mpjsys4gy70jhg1"))))
(build-system pyproject-build-system)
+ (arguments
+ (list #:test-backend #~'unittest))
(native-inputs
- (list python-pytest
- python-setuptools
- python-wheel))
+ (list python-setuptools))
(home-page "https://github.com/PyCQA/pyflakes")
(synopsis "Passive checker of Python programs")
(description