rekado pushed a commit to branch python-team
in repository guix.
commit b77cf07de8c4d86423d1d9cd120b207305b0f148
Author: Ricardo Wurmus <[email protected]>
AuthorDate: Fri Dec 20 22:36:52 2024 +0100
gnu: python-irc-parser-tests: Fix build and enable tests.
* gnu/packages/irc.scm (python-irc-parser-tests)[arguments]: Remove field to
enable tests.
[native-inputs]: Add python-girc, python-ircmatch, python-setuptools, and
python-wheel.
Change-Id: I9f98a98a1e6f1e3cbfdffed6048d5cd89bd51094
---
gnu/packages/irc.scm | 7 +++----
1 file changed, 3 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/irc.scm b/gnu/packages/irc.scm
index 75f0ebe482..bf5b9b5034 100644
--- a/gnu/packages/irc.scm
+++ b/gnu/packages/irc.scm
@@ -882,11 +882,10 @@ performance when matching IRC hostmasks.")
(sha256
(base32 "0x0psq31f43d88b8jhaqwd9f1ykiqm4j13i8nxgcgkgp992cw002"))))
(build-system pyproject-build-system)
- (arguments
- (list
- ;; Tests require python-girc which fails to build on Python 3.10.
- #:tests? #f))
(propagated-inputs (list python-pyyaml))
+ (native-inputs
+ (list python-girc python-ircmatch
+ python-setuptools python-wheel))
(home-page "https://github.com/ircdocs/parser-tests")
(synopsis "Tests for various IRC protocol parsers")
(description