2021-02-05 17:12:51 +00:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, isPy27
|
|
|
|
, fetchFromGitHub
|
|
|
|
, pytestCheckHook
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "imap-tools";
|
2022-02-20 05:27:41 +00:00
|
|
|
version = "0.51.0";
|
2021-02-05 17:12:51 +00:00
|
|
|
|
|
|
|
disabled = isPy27;
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "ikvk";
|
|
|
|
repo = "imap_tools";
|
|
|
|
rev = "v${version}";
|
2022-02-20 05:27:41 +00:00
|
|
|
hash = "sha256-ZJen+hpNpeZjScD7aqdaW796KRlJ8K1JBXPOagpceXk=";
|
2021-02-05 17:12:51 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
checkInputs = [
|
|
|
|
pytestCheckHook
|
|
|
|
];
|
|
|
|
|
|
|
|
disabledTests = [
|
|
|
|
# tests require a network connection
|
|
|
|
"test_action"
|
|
|
|
"test_attributes"
|
2022-02-20 05:27:41 +00:00
|
|
|
"test_connection"
|
|
|
|
"test_folders"
|
|
|
|
"test_idle"
|
2021-02-05 17:12:51 +00:00
|
|
|
"test_live"
|
|
|
|
];
|
|
|
|
|
|
|
|
pythonImportsCheck = [ "imap_tools" ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Work with email and mailbox by IMAP";
|
|
|
|
homepage = "https://github.com/ikvk/imap_tools";
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ dotlambda ];
|
|
|
|
};
|
|
|
|
}
|