diff options
author | Nicolas Graves <ngraves@ngraves.fr> | 2025-07-24 21:13:14 +0200 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-25 11:32:14 +0100 |
commit | 214b619bf091e580e0dec2bf920ca0709de87717 (patch) | |
tree | d8141d6f31f460ee19ce90ee75f13f8414e2f8a4 /gnu/packages/python-xyz.scm | |
parent | f2f55158856714d602c826eb6a7d5cbb70f0a05f (diff) |
gnu: python-editorconfig: Update to 0.17.1.
* gnu/packages/python-xyz.scm (python-editorconfig): Update to 0.17.1.
[source]: Switch to git-fetch.
[arguments]<#:phases>: Replace 'check phase.
[native-inputs]: Add cmake.
Change-Id: I6611b18d8858bd5d9e6220b35ae63799094319e4
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r-- | gnu/packages/python-xyz.scm | 24 |
1 files changed, 18 insertions, 6 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index efca4f8c4b..d99fec8332 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -5242,16 +5242,28 @@ messages in color.") (define-public python-editorconfig (package (name "python-editorconfig") - (version "0.12.2") + (version "0.17.1") (source (origin - (method url-fetch) - (uri (pypi-uri "EditorConfig" version)) + (method git-fetch) + (uri (git-reference + (url "https://github.com/editorconfig/editorconfig-core-py") + (commit (string-append "v" version)) + (recursive? #t))) + (file-name (git-file-name name version)) (sha256 - (base32 - "0v55z351p9qkyp3bbspwywwn28sbcknhirngjbj779n3z52z63hv")))) + (base32 "107lh5pds1iwgb2q1da2k7g5vs6w0rk84679k6yi8a01agc1c0fz")))) (build-system pyproject-build-system) - (native-inputs (list python-setuptools python-wheel)) + (arguments + (list + #:phases + #~(modify-phases %standard-phases + (replace 'check + (lambda _ + (setenv "PYTHONPATH" (getenv "GUIX_PYTHONPATH")) + (invoke "cmake" ".") + (invoke "ctest" ".")))))) + (native-inputs (list cmake python-setuptools python-wheel)) (home-page "https://editorconfig.org/") (synopsis "EditorConfig bindings for python") (description "The EditorConfig project consists of a file format for |