summary refs log tree commit diff
path: root/pkgs/development/python-modules/notmuch/default.nix
blob: 207e59b850113bbdfc65df37aa759ce43deb612c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{ stdenv
, buildPythonPackage
, pkgs
, python
}:

buildPythonPackage rec {
  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; [ garbas ];
  };

}