lol

python3Packages.notmuch2: add missing runtime dependency cffi

With this change it's possible to use notmuch2 after entering a
nix-shell, e.g. `nix-shell -p python3Packages.notmuch2`. Previously,
this would fail complaining about the missing cffi library.

authored by

Michael Adler and committed by
Matthieu Coudron
7950c700 e1ea1ba3

+3 -1
+3 -1
pkgs/development/python-modules/notmuch2/default.nix
··· 16 16 cffi 17 17 ]; 18 18 buildInputs = [ 19 - python notmuch cffi 19 + python notmuch 20 20 ]; 21 + 22 + propagatedBuildInputs = [ cffi ]; 21 23 22 24 # since notmuch 0.35, this package expects _notmuch_config.py that is 23 25 # generated by notmuch's configure script. We write one which references our