mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-13 22:50:23 -05:00
gnu: python-flake8-isort: Update to 6.1.0.
* gnu/packages/python-xyz.scm (python-flake8-isort): Update to 6.1.0. [arguments]<#:phases>: Update check phase, because tests have been moved to run_tests.py. [propagated-inputs]: Remove python-testfixtures. Change-Id: Iecaf50021c8f29fb083f7a85b7ac731836e97384 Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
This commit is contained in:
parent
53f51a908b
commit
5f2a3c3ebc
1 changed files with 4 additions and 4 deletions
|
@ -13081,13 +13081,13 @@ (define-public python-flake8-todo
|
||||||
(define-public python-flake8-isort
|
(define-public python-flake8-isort
|
||||||
(package
|
(package
|
||||||
(name "python-flake8-isort")
|
(name "python-flake8-isort")
|
||||||
(version "4.1.1")
|
(version "6.1.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (pypi-uri "flake8-isort" version))
|
(uri (pypi-uri "flake8-isort" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "05r7z0j9rqgy0a9261bhisairrz6w8hy5hy5kf2mhvhfnx53056q"))))
|
(base32 "0gk4q504v42hdzpkndczc0kkwnr85jn1h5pvb561jh65p91r6qyl"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
(list
|
(list
|
||||||
|
@ -13096,8 +13096,8 @@ (define-public python-flake8-isort
|
||||||
(replace 'check
|
(replace 'check
|
||||||
(lambda* (#:key tests? #:allow-other-keys)
|
(lambda* (#:key tests? #:allow-other-keys)
|
||||||
(when tests?
|
(when tests?
|
||||||
(invoke "pytest" "-vv")))))))
|
(invoke "pytest" "-vv" "run_tests.py")))))))
|
||||||
(propagated-inputs (list python-flake8 python-isort python-testfixtures))
|
(propagated-inputs (list python-flake8 python-isort))
|
||||||
(native-inputs (list python-pytest))
|
(native-inputs (list python-pytest))
|
||||||
(home-page "https://github.com/gforcada/flake8-isort")
|
(home-page "https://github.com/gforcada/flake8-isort")
|
||||||
(synopsis "Flake8 plugin integrating isort")
|
(synopsis "Flake8 plugin integrating isort")
|
||||||
|
|
Loading…
Reference in a new issue