mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 14:56:54 +01:00
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
This commit is contained in:
parent
0df28169f3
commit
4d77076ced
1 changed files with 10 additions and 4 deletions
|
@ -15442,16 +15442,22 @@ (define-public python-flake8-implicit-str-concat
|
|||
(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
|
||||
|
|
Loading…
Reference in a new issue