summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-09-21 16:11:43 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-09-25 09:36:49 +0100
commitcd710165a00124773e2a2b6c39517f5832f23e64 (patch)
treede351522861c22fabe3940d9c472751957c20a21
parentd8a20b1d9ede1ce2f159e9b787d6e3ca5970649e (diff)
gnu: python-irc-parser-tests: Fix tests.
* gnu/packages/irc.scm (python-irc-parser-tests)[arguments] <test-backend>: Use 'custom. <test-flags>: Provide "test.py". [native-inputs]: Remove python-wheel. Change-Id: I3128b29d0e485c0dea2109bc9a13026322ec02da
-rw-r--r--gnu/packages/irc.scm8
1 files changed, 6 insertions, 2 deletions
diff --git a/gnu/packages/irc.scm b/gnu/packages/irc.scm
index dc059a6d81..8fb32e6b73 100644
--- a/gnu/packages/irc.scm
+++ b/gnu/packages/irc.scm
@@ -886,10 +886,14 @@ performance when matching IRC hostmasks.")
(sha256
(base32 "0x0psq31f43d88b8jhaqwd9f1ykiqm4j13i8nxgcgkgp992cw002"))))
(build-system pyproject-build-system)
+ (arguments
+ (list #:test-backend #~'custom
+ #:test-flags #~(list "test.py")))
(propagated-inputs (list python-pyyaml))
(native-inputs
- (list python-girc python-ircmatch
- python-setuptools python-wheel))
+ (list python-girc
+ python-ircmatch
+ python-setuptools))
(home-page "https://github.com/ircdocs/parser-tests")
(synopsis "Tests for various IRC protocol parsers")
(description