nixpkgs/pkgs/development/python-modules/notmuch2/default.nix
adisbladis 02dab4ab5c python3.pkgs.*: Explicitly pass buildPythonPackage format parameter
Long term we should move everything over to `pyproject = true`, but in
the mean time we can work towards deprecating the implicit `format` paremeter.

cc https://github.com/NixOS/nixpkgs/issues/253154
cc @mweinelt @figsoda
2023-12-07 17:46:49 +01:00

48 lines
1.1 KiB
Nix

{ stdenv
, 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 = with lib; {
description = "Pythonic bindings for the notmuch mail database using CFFI";
homepage = "https://notmuchmail.org/";
license = licenses.gpl3;
maintainers = with maintainers; [ teto ];
};
}