diff options
author | Vinicius Monego <monego@posteo.net> | 2025-07-30 19:45:26 -0300 |
---|---|---|
committer | Vinicius Monego <monego@posteo.net> | 2025-08-02 09:15:50 -0300 |
commit | 6c95f0a0ef1424aa8160c7bc87b28cb90bb3cf46 (patch) | |
tree | 18992f04e65071d2f1dd6e821f3683d61eb502f8 /gnu/packages | |
parent | 32e01b4f8362d4ffc6af6b4ad061a48d57d11bcf (diff) |
* gnu/packages/python-xyz.scm (python-rtf-tokenize): Update to 1.0.1.
[build-system]: Use pyproject-build-system.
[native-inputs]: Add python-setuptools, python-wheel.
Change-Id: I9b99934c6b2a6b54cf0b9bab99cdd996ef45ad17
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/python-xyz.scm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 9b9abeeea5..03f2828cfc 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -17701,15 +17701,15 @@ printing of sub-tables by specifying a row range.") (define-public python-rtf-tokenize (package (name "python-rtf-tokenize") - (version "1.0.0") + (version "1.0.1") (source (origin (method url-fetch) (uri (pypi-uri "rtf_tokenize" version)) (sha256 (base32 - "026njb9iwznycda83bln3gfivcnzdz6vy8y86xvbsy84s28g6gaw")))) - (build-system python-build-system) - (native-inputs (list python-pytest)) + "1ljs0dcg2p1iad4zrxgn1pbrrcjcrswhjxrbprhdxd822n0al84h")))) + (build-system pyproject-build-system) + (native-inputs (list python-pytest python-setuptools python-wheel)) (home-page "https://github.com/benoit-pierre/rtf_tokenize") (synopsis "Simple RTF tokenizer") (description "This package is a simple RTF tokenizer.") |