nixpkgs/pkgs/development/python-modules/notmuch/2.nix
Matthieu Coudron 6bf0226686 pythonPackages.notmuch2: init at 0.31
generates bindings via cffi
2020-11-14 23:46:25 +01:00

23 lines
472 B
Nix

{ 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 ];
};
}