Files
nixpkgs/pkgs/development/python-modules/notmuch2/default.nix
T
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

48 lines
1.1 KiB
Nix

{
lib,
buildPythonPackage,
notmuch,
python,
cffi,
}:
buildPythonPackage {
pname = "notmuch2";
format = "setuptools";
inherit (notmuch) version src;
sourceRoot = "notmuch-${notmuch.version}/bindings/python-cffi";
nativeBuildInputs = [ cffi ];
buildInputs = [
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.
postPatch = ''
cat > _notmuch_config.py << EOF
import os
dir_path = os.path.dirname(os.path.realpath(__file__))
NOTMUCH_VERSION_FILE=os.path.join(dir_path, '../../version.txt')
NOTMUCH_INCLUDE_DIR='${notmuch.out}/lib'
NOTMUCH_LIB_DIR='${notmuch.out}/lib'
EOF
'';
# no tests
doCheck = false;
pythonImportsCheck = [ "notmuch2" ];
meta = {
description = "Pythonic bindings for the notmuch mail database using CFFI";
homepage = "https://notmuchmail.org/";
license = lib.licenses.gpl3;
maintainers = with lib.maintainers; [ teto ];
};
}