summaryrefslogtreecommitdiff
path: root/gnu/packages/python-xyz.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-07-29 18:49:50 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-09-25 09:35:47 +0100
commitb5ffd96e0e5654142fd24b6410e3e33a44cf4680 (patch)
tree1affe0b691ab3e2df2471e60d42298d8d8f47850 /gnu/packages/python-xyz.scm
parent973626c3c23af00d94578e5116160e081e7fcc3f (diff)
gnu: python-regex: Update to 2024.11.6.
* gnu/packages/python-xyz.scm (python-regex): Update to 2024.11.6. [build-system]: Use pyproject. [arguments] <test-backend>: Use 'unittest. <phases>: Use default 'check. [native-inputs]: Add python-setuptools. Change-Id: I5657b0be454c775296d089aec771d316e6aeee27
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r--gnu/packages/python-xyz.scm16
1 files changed, 6 insertions, 10 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 55aa3b793f..922bbb7c54 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -27478,22 +27478,18 @@ class ShellOutSSHClientTests"))))
(define-public python-regex
(package
(name "python-regex")
- (version "2022.1.18")
+ (version "2024.11.6")
(source
(origin
(method url-fetch)
(uri (pypi-uri "regex" version))
(sha256
- (base32 "05ir92d0cmv8wkafn3r05j5q47l6shg7cpdblp2a8m407b02vwwp"))))
- (build-system python-build-system)
+ (base32 "06amb1sxhbab03cy73q7wcp131bsingngr44r0rh6an5cfq5kcbs"))))
+ (build-system pyproject-build-system)
(arguments
- #~(#:phases
- (modify-phases %standard-phases
- (replace 'check
- (lambda* (#:key inputs outputs #:allow-other-keys)
- (add-installed-pythonpath inputs outputs)
- (invoke "python" "-c"
- "from regex.test_regex import test_main ; test_main()"))))))
+ (list #:test-backend #~'unittest))
+ (native-inputs
+ (list python-setuptools))
(home-page "https://bitbucket.org/mrabarnett/mrab-regex")
(synopsis "Alternative regular expression module")
(description