mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-27 02:34:53 +00:00
49 lines
1.2 KiB
Nix
49 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
setuptools,
|
|
pytestCheckHook,
|
|
}:
|
|
|
|
buildPythonPackage (finalAttrs: {
|
|
pname = "imap-tools";
|
|
version = "1.15.0";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ikvk";
|
|
repo = "imap_tools";
|
|
tag = "v${finalAttrs.version}";
|
|
hash = "sha256-AnAplrYjqy9K/GagiDgmExnOL9poEQ7Ksjyv8QdATIE=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
disabledTests = [
|
|
# tests require a network connection
|
|
"test_action"
|
|
"test_attributes"
|
|
"test_connection"
|
|
"test_folders"
|
|
"test_idle"
|
|
"test_live"
|
|
# broken on Python 3.14.7
|
|
# reported upstream: https://github.com/ikvk/imap_tools/issues/271
|
|
"test_login_quotes_plain_username"
|
|
"test_login_quotes_username_with_special_chars"
|
|
];
|
|
|
|
pythonImportsCheck = [ "imap_tools" ];
|
|
|
|
meta = {
|
|
description = "Work with email and mailbox by IMAP";
|
|
homepage = "https://github.com/ikvk/imap_tools";
|
|
changelog = "https://github.com/ikvk/imap_tools/blob/${finalAttrs.src.tag}/docs/release_notes.rst";
|
|
license = lib.licenses.asl20;
|
|
maintainers = with lib.maintainers; [ dotlambda ];
|
|
};
|
|
})
|