pythonPackages.notmuch2: init at 0.31
generates bindings via cffi
This commit is contained in:
parent
3e5039cbd5
commit
6bf0226686
22
pkgs/development/python-modules/notmuch/2.nix
Normal file
22
pkgs/development/python-modules/notmuch/2.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -4140,6 +4140,7 @@ in {
|
|||||||
notify-py = callPackage ../development/python-modules/notify-py { };
|
notify-py = callPackage ../development/python-modules/notify-py { };
|
||||||
|
|
||||||
notmuch = callPackage ../development/python-modules/notmuch { inherit (pkgs) notmuch; };
|
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 { };
|
nototools = callPackage ../data/fonts/noto-fonts/tools.nix { };
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user