depot/third_party/nixpkgs/pkgs/development/python-modules/notmuch/default.nix
Default email a5adf1ddd8 Project import generated by Copybara.
GitOrigin-RevId: b3616bd96400ce0252c241d76fcafb64389defc6
2021-01-15 23:18:51 +01:00

31 lines
583 B
Nix

{ lib
, stdenv
, buildPythonPackage
, notmuch
, python
}:
buildPythonPackage {
inherit (notmuch) pname version src;
sourceRoot = notmuch.pythonSourceRoot;
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 = "A Python wrapper around notmuch";
homepage = "https://notmuchmail.org/";
license = licenses.gpl3;
maintainers = with maintainers; [ ];
};
}