blob: 47f23ed99fed2e6960859d777084d0f698d078ca (
about) (
plain)
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
29
30
31
32
33
34
35
36
|
{
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 = [ ];
};
}
|