diff options
| author | Nicolas Graves <ngraves@ngraves.fr> | 2025-09-22 01:01:56 +0200 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-09-25 09:36:55 +0100 |
| commit | c35a657fe9fac9d02c931a25a7822dc4bb7b2645 (patch) | |
| tree | 5c2078e1e7c9b072583d4783fe3b708596707628 | |
| parent | e72a72ae673342dc3fc70d881c105b2c3716288e (diff) | |
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 <sharlatanus@gmail.com>
| -rw-r--r-- | gnu/packages/mail.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm index 45bbc4b7b1..2cc3f18408 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+))) |
