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.
This commit is contained in:
committed by
Matthieu Coudron
parent
e1ea1ba340
commit
7950c700e8
@@ -16,9 +16,11 @@ buildPythonPackage {
|
||||
cffi
|
||||
];
|
||||
buildInputs = [
|
||||
python notmuch cffi
|
||||
python notmuch
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [ cffi ];
|
||||
|
||||
# since notmuch 0.35, this package expects _notmuch_config.py that is
|
||||
# generated by notmuch's configure script. We write one which references our
|
||||
# built libraries.
|
||||
|
||||
Reference in New Issue
Block a user