diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2024-12-20 22:36:52 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2024-12-20 22:38:14 +0100 |
commit | fdcb67250af3df91b3ef090915ba32fe22cce86e (patch) | |
tree | 7678b42a378dbbbc63b74f45bcdc41f3afb8cf92 /gnu | |
parent | e2bfbba33eebdae2226cdbaf2e78204eb727ea5b (diff) | |
download | guix-fdcb67250af3df91b3ef090915ba32fe22cce86e.tar.gz guix-fdcb67250af3df91b3ef090915ba32fe22cce86e.zip |
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
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/irc.scm | 7 |
1 files 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 |