diff options
| author | Nicolas Graves <ngraves@ngraves.fr> | 2025-10-05 13:53:47 +0200 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-10-05 17:09:12 +0100 |
| commit | 922bcb268495778cce259de7b254ebe9cf5e6cd1 (patch) | |
| tree | c0fb4644df6b0662c1297da95421da1c3f53d91f /gnu/packages/python-xyz.scm | |
| parent | a49741064a1901ee0262175b8d78bdb1b62f7fb4 (diff) | |
gnu: python-tokenize-rt: Update to 6.2.0.
* gnu/packages/python-xyz.scm (python-tokenize-rt): Update to 6.2.0.
[source]: Switch to git-fetch.
[build-system]: Switch to pyproject-build-system.
[native-inputs]: Add python-pytest, python-setuptools.
Change-Id: If3b52adf499e5d9a468b57b7b6774c614e353094
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/python-xyz.scm')
| -rw-r--r-- | gnu/packages/python-xyz.scm | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 9df03f43ca..269f742597 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -28460,15 +28460,18 @@ Week instances stringify to this form.") (define-public python-tokenize-rt (package (name "python-tokenize-rt") - (version "2.0.1") + (version "6.2.0") (source (origin - (method url-fetch) - (uri (pypi-uri "tokenize-rt" version)) + (method git-fetch) + (uri (git-reference + (url "https://github.com/asottile/tokenize-rt") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) (sha256 - (base32 - "1yjvbz7rvrz31zjyax1cgy3xhf4wb3j18jwnj4bnl77ca4gliyiw")))) - (build-system python-build-system) + (base32 "1maa9sifma0a6v7kl7mmyqzj0jdclzlp4wjr0vkdx95raihxx4fv")))) + (build-system pyproject-build-system) + (native-inputs (list python-pytest python-setuptools)) (home-page "https://github.com/asottile/tokenize-rt") (synopsis "Wrapper around the stdlib tokenize which roundtrips") (description |
