gnu: python-isort: Update to 5.12.0.

* gnu/packages/python-xyz.scm (python-isort): Update to 5.12.0.
[arguments]: Delete loosen-requirements phase.  Streamline
install-example-plugins phase.
This commit is contained in:
Maxim Cournoyer 2023-04-16 21:57:06 -04:00
parent f91ce478f4
commit 2e6da431e2
No known key found for this signature in database
GPG key ID: 1260E46482E63562

View file

@ -20281,7 +20281,7 @@ (define-public python-isbnlib
(define-public python-isort
(package
(name "python-isort")
(version "5.10.1")
(version "5.12.0")
(source
(origin
(method git-fetch)
@ -20294,19 +20294,11 @@ (define-public python-isort
(snippet '(for-each delete-file (find-files "." "\\.whl$")))
(sha256
(base32
"09spgl2k9xrprr5gbpfc91a8p7mx7a0c64ydgc91b3jhrmnd9jg1"))))
"1vbwc4gpffclf6hw08lvvgqlvsgfjlw7gjsm28jfcrln2pixla7j"))))
(build-system python-build-system)
(arguments
`(#:phases
(modify-phases %standard-phases
(add-after 'unpack 'loosen-requirements
(lambda _
;; Permit newer versions of black.
(substitute* "example_isort_formatting_plugin/pyproject.toml"
(("\\^20\\.08b1")
">= 20.08b1"))))
;; A foretaste of what our future python-build-system will need to
;; do.
(replace 'build
(lambda _
(invoke "python" "-m" "build" "--wheel" "--no-isolation" ".")))
@ -20317,29 +20309,19 @@ (define-public python-isort
(invoke "pip" "--no-cache-dir" "--no-input"
"install" "--no-deps" "--prefix" out whl))))
(add-after 'install 'install-example-plugins
(lambda* (#:key outputs #:allow-other-keys)
(let ((out (assoc-ref outputs "out")))
;; Patch to use the core poetry API.
(substitute* '("example_isort_formatting_plugin/pyproject.toml"
"example_isort_sorting_plugin/pyproject.toml"
"example_shared_isort_profile/pyproject.toml")
(("poetry>=0.12")
"poetry-core>=1.0.0")
(("poetry.masonry.api")
"poetry.core.masonry.api"))
;; Build the example plugins.
(for-each (lambda (source-directory)
(invoke "python" "-m" "build" "--wheel"
"--no-isolation" "--outdir=dist"
source-directory))
'("example_isort_formatting_plugin"
"example_isort_sorting_plugin"
"example_shared_isort_profile"))
;; Install them to temporary storage, for the test.
(setenv "HOME" (getcwd))
(let ((example-whls (find-files "dist" "^example.*\\.whl$")))
(apply invoke "pip" "--no-cache-dir" "--no-input"
"install" "--user" "--no-deps" example-whls)))))
(lambda _
(for-each (lambda (source-directory)
(invoke "python" "-m" "build" "--wheel"
"--no-isolation" "--outdir=dist"
source-directory))
'("example_isort_formatting_plugin"
"example_isort_sorting_plugin"
"example_shared_isort_profile"))
;; Install them to temporary storage, for the test.
(setenv "HOME" (getcwd))
(let ((example-whls (find-files "dist" "^example.*\\.whl$")))
(apply invoke "pip" "--no-cache-dir" "--no-input"
"install" "--user" "--no-deps" example-whls))))
(replace 'check
(lambda* (#:key tests? inputs outputs #:allow-other-keys)
(when tests?