depot/third_party/nixpkgs/pkgs/development/python-modules/notmuch/default.nix
Default email 5ca88bfbb9 Project import generated by Copybara.
GitOrigin-RevId: 9f918d616c5321ad374ae6cb5ea89c9e04bf3e58
2024-07-31 10:19:44 +00:00

36 lines
596 B
Nix

{
lib,
buildPythonPackage,
notmuch,
python,
}:
buildPythonPackage {
inherit (notmuch) pname version src;
sourceRoot = notmuch.pythonSourceRoot;
format = "setuptools";
buildInputs = [
python
notmuch
];
postPatch = ''
sed -i -e '/CDLL/s@"libnotmuch\.@"${notmuch}/lib/libnotmuch.@' \
notmuch/globals.py
'';
# no tests
doCheck = false;
pythonImportsCheck = [ "notmuch" ];
meta = with lib; {
description = "Python wrapper around notmuch";
homepage = "https://notmuchmail.org/";
license = licenses.gpl3;
maintainers = [ ];
};
}