From c35a657fe9fac9d02c931a25a7822dc4bb7b2645 Mon Sep 17 00:00:00 2001 From: Nicolas Graves Date: Mon, 22 Sep 2025 01:01:56 +0200 Subject: [PATCH] gnu: python-notmuch2: Fix tests. * gnu/packages/mail.scm (python-notmuch2)[native-inputs]: Add python-pytest, python-pytest-cov, python-setuptools. Change-Id: I5678b4565fb31a36484b89acaa66b67e0029b262 Signed-off-by: Sharlatan Hellseher --- gnu/packages/mail.scm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm index 45bbc4b7b18e1fa363b81f7e89d536787965460e..2cc3f1840889c120d81b3ed86bd4a0f3b65e15a1 100644 --- a/gnu/packages/mail.scm +++ b/gnu/packages/mail.scm @@ -1699,7 +1699,6 @@ and search library.") (inherit python-notmuch) (name "python-notmuch2") (version (package-version notmuch)) - (propagated-inputs (list python-cffi)) (arguments (list #:phases @@ -1728,6 +1727,8 @@ and search library.") "'/dev/null'") (("version=VERSION,") (string-append "version='" #$version "',")))))))) + (propagated-inputs (list python-cffi)) + (native-inputs (list python-pytest python-pytest-cov python-setuptools)) (synopsis "Pythonic bindings for the notmuch mail database using CFFI") (license license:gpl3+)))