mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
32 lines
575 B
Nix
32 lines
575 B
Nix
{ lib
|
|
|
|
, 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; [ ];
|
|
};
|
|
|
|
}
|