gnu: Add python-rtf-tokenize.

* gnu/packages/python-xyz.scm (python-rtf-tokenize): New variable.
This commit is contained in:
Nicolas Goaziou 2022-10-25 13:53:20 +02:00
parent 822166ac31
commit 743e5adf47
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -12035,6 +12035,23 @@ (define-public python-prettytable
printing of sub-tables by specifying a row range.")
(license license:bsd-3)))
(define-public python-rtf-tokenize
(package
(name "python-rtf-tokenize")
(version "1.0.0")
(source (origin
(method url-fetch)
(uri (pypi-uri "rtf_tokenize" version))
(sha256
(base32
"026njb9iwznycda83bln3gfivcnzdz6vy8y86xvbsy84s28g6gaw"))))
(build-system python-build-system)
(native-inputs (list python-pytest))
(home-page "https://github.com/benoit-pierre/rtf_tokenize")
(synopsis "Simple RTF tokenizer")
(description "This package is a simple RTF tokenizer.")
(license license:gpl2+)))
(define-public python-curio
(package
(name "python-curio")