pythonPackages.notmuch2: init at 0.31

generates bindings via cffi
This commit is contained in:
Matthieu Coudron 2020-11-08 17:00:17 +01:00 committed by Matthieu Coudron
parent 3e5039cbd5
commit 6bf0226686
2 changed files with 23 additions and 0 deletions

View file

@ -0,0 +1,22 @@
{ stdenv
, buildPythonPackage
, notmuch
, python
, cffi
}:
buildPythonPackage {
pname = "notmuch2";
inherit (notmuch) version src;
sourceRoot = "${notmuch.src.name}/bindings/python-cffi";
buildInputs = [ python notmuch cffi ];
meta = with stdenv.lib; {
description = "Pythonic bindings for the notmuch mail database using CFFI";
homepage = "https://notmuchmail.org/";
license = licenses.gpl3;
maintainers = with maintainers; [ teto ];
};
}

View file

@ -4140,6 +4140,7 @@ in {
notify-py = callPackage ../development/python-modules/notify-py { };
notmuch = callPackage ../development/python-modules/notmuch { inherit (pkgs) notmuch; };
notmuch2 = callPackage ../development/python-modules/notmuch/2.nix { inherit (pkgs) notmuch; };
nototools = callPackage ../data/fonts/noto-fonts/tools.nix { };