[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/02: gnu: Add python-rtf-tokenize.
From: |
guix-commits |
Subject: |
01/02: gnu: Add python-rtf-tokenize. |
Date: |
Tue, 25 Oct 2022 07:58:56 -0400 (EDT) |
ngz pushed a commit to branch master
in repository guix.
commit 743e5adf4727c41f110b5bbae3a3558c65fd86be
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Tue Oct 25 13:53:20 2022 +0200
gnu: Add python-rtf-tokenize.
* gnu/packages/python-xyz.scm (python-rtf-tokenize): New variable.
---
gnu/packages/python-xyz.scm | 17 +++++++++++++++++
1 file changed, 17 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 51136d8e6e..08a33061a9 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -12035,6 +12035,23 @@ independent alignment of columns (left or right
justified or centred) and
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")