nixpkgs/pkgs/development/python-modules/notmuch/default.nix
2019-08-28 11:07:32 +00:00

29 lines
551 B
Nix

{ stdenv
, buildPythonPackage
, pkgs
, python
}:
buildPythonPackage {
name = "python-${pkgs.notmuch.name}";
src = pkgs.notmuch.src;
sourceRoot = pkgs.notmuch.pythonSourceRoot;
buildInputs = [ python pkgs.notmuch ];
postPatch = ''
sed -i -e '/CDLL/s@"libnotmuch\.@"${pkgs.notmuch}/lib/libnotmuch.@' \
notmuch/globals.py
'';
meta = with stdenv.lib; {
description = "A Python wrapper around notmuch";
homepage = https://notmuchmail.org/;
license = licenses.gpl3;
maintainers = with maintainers; [ ];
};
}