nixpkgs/pkgs/development/python-modules/notmuch/2.nix
Matthieu Coudron 84c07d71a5 python3Packages.notmuch2: fix build
folder name became incorrect
2021-08-05 19:29:27 -07:00

28 lines
542 B
Nix

{ lib
, buildPythonPackage
, notmuch
, python
, cffi
}:
buildPythonPackage {
pname = "notmuch2";
inherit (notmuch) version src;
sourceRoot = "notmuch-${notmuch.version}/bindings/python-cffi";
buildInputs = [ python notmuch cffi ];
# no tests
doCheck = false;
pythonImportsCheck = [ "notmuch2" ];
meta = with lib; {
description = "Pythonic bindings for the notmuch mail database using CFFI";
homepage = "https://notmuchmail.org/";
license = licenses.gpl3;
maintainers = with maintainers; [ teto ];
};
}