sharlatan pushed a commit to branch python-team
in repository guix.
commit 3860a4ebdb35e8b1d131b386937c72b457c91208
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sun Dec 1 09:36:43 2024 +0000
gnu: python-flake8-print: Update to 5.0.0.
* gnu/packages/python-xyz.scm (python-flake8-print): Update to 5.0.0.
[build-system]: Swap to pyrpoject-build-system.
[arguments]<tests?>: Explicitly disable them as no provided in PyPI
archive or Git checkout.
[propagated-inputs]: Remove python-six.
[native-inputs]: Add python-poetry-core.
Change-Id: Ifd52bbde3b41165d0f336973cb2817924f209568
---
gnu/packages/python-xyz.scm | 14 ++++++++++----
1 file changed, 10 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 5ab14ea345..bbcc4182c2 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -15402,16 +15402,22 @@ unnecessary plus operators for explicit string
literal concatenation.")
(define-public python-flake8-print
(package
(name "python-flake8-print")
- (version "4.0.0")
+ (version "5.0.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "flake8-print" version))
(sha256
- (base32 "05k5kkvyk6fdmvnacxfzypk74vbl3pmva13dqg1aljfwnxsc7yjs"))))
- (build-system python-build-system)
+ (base32 "1ydx92xck090ajp8vk2378fm0f4wj3mikhinjs3w1hcw70m5m4bn"))))
+ (build-system pyproject-build-system)
+ (arguments
+ (list
+ #:tests? #f)) ; no tests in PiPY or git checkout
+ (native-inputs
+ (list python-poetry-core))
(propagated-inputs
- (list python-flake8 python-pycodestyle python-six))
+ (list python-flake8
+ python-pycodestyle))
(home-page "https://github.com/jbkahn/flake8-print")
(synopsis "Print statement checker plugin for Flake8")
(description