2025-07-04 12:57:27 +00:00

45 lines
959 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "imap-tools";
version = "1.11.0";
pyproject = true;
src = fetchFromGitHub {
owner = "ikvk";
repo = "imap_tools";
tag = "v${version}";
hash = "sha256-8oPiCFoJ0mV7ZnteM9lufIbxwA/7hV91959weEx/e30=";
};
build-system = [ setuptools ];
nativeCheckInputs = [ pytestCheckHook ];
disabledTests = [
# tests require a network connection
"test_action"
"test_attributes"
"test_connection"
"test_folders"
"test_idle"
"test_live"
];
pythonImportsCheck = [ "imap_tools" ];
meta = with lib; {
description = "Work with email and mailbox by IMAP";
homepage = "https://github.com/ikvk/imap_tools";
changelog = "https://github.com/ikvk/imap_tools/blob/${src.tag}/docs/release_notes.rst";
license = licenses.asl20;
maintainers = with maintainers; [ dotlambda ];
};
}