summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-10-24 13:43:31 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-10-24 15:27:35 +0100
commit99ad507626b40491ebaf90d61be059e2ecd6be19 (patch)
tree99e7d5a6f4fe9d5dfb24c757f96dbbbce8c5931e /gnu
parent489785127152d783bd1030e321186a31794d0412 (diff)
gnu: python-textparser: Update to 0.24.0.
* gnu/packages/python-xyz.scm (python-textparser): Update to 0.24.0. [build-system]: Switch to pypproject-build-system. [arguments] <test-backend>: Use 'unittest. [native-inputs]: Add python-setuptools. Change-Id: I49ccdbfdd9cca228b619d92e6969f8ba9d44c81c
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/python-xyz.scm10
1 files changed, 6 insertions, 4 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index b5e3e65104d..51182d4c970 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -5416,15 +5416,17 @@ helpers.")
(define-public python-textparser
(package
(name "python-textparser")
- (version "0.23.0")
+ (version "0.24.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "textparser" version))
(sha256
- (base32
- "0w5lyhrsvzs5a9q1l3sjgxgljrvd3ybf796w93kc39wayzvd02gh"))))
- (build-system python-build-system)
+ (base32 "0dc3aqbzh0x13i6cmr73q777wv8nxyk3p0kdnynh5l59bbkhixsn"))))
+ (build-system pyproject-build-system)
+ (arguments
+ (list #:test-backend #~'unittest))
+ (native-inputs (list python-setuptools))
(home-page "https://github.com/eerimoq/textparser")
(synopsis "Fast text parser for Python")
(description "This library provides a text parser written in the Python