linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / notmuch / 2.nix
blobbde039836ffae59af06594b0477afbe74b7d4b84
1 { lib
3 , buildPythonPackage
4 , notmuch
5 , python
6 , cffi
7 }:
9 buildPythonPackage {
10   pname = "notmuch2";
11   inherit (notmuch) version src;
13   sourceRoot = "${notmuch.src.name}/bindings/python-cffi";
15   buildInputs = [ python notmuch cffi ];
17   # no tests
18   doCheck = false;
19   pythonImportsCheck = [ "notmuch2" ];
21   meta = with lib; {
22     description = "Pythonic bindings for the notmuch mail database using CFFI";
23     homepage = "https://notmuchmail.org/";
24     license = licenses.gpl3;
25     maintainers = with maintainers; [ teto ];
26   };