pythonPackages.notmuch2: Disable tests

This commit is contained in:
Sandro Jäckel
2021-01-09 23:14:49 +01:00
parent aa3a78911a
commit eea84e25e6
2 changed files with 7 additions and 6 deletions

View File

@@ -1,4 +1,5 @@
{ lib, stdenv
{ lib
, stdenv
, buildPythonPackage
, notmuch
, python
@@ -13,6 +14,10 @@ buildPythonPackage {
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/";