blob: d914f72b94bcbc4f59f8be3807ff461f9c28ab73 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
{
lib,
buildPythonPackage,
pythonOlder,
fetchFromGitHub,
setuptools,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "imap-tools";
version = "1.7.2";
disabled = pythonOlder "3.5";
pyproject = true;
src = fetchFromGitHub {
owner = "ikvk";
repo = "imap_tools";
rev = "refs/tags/v${version}";
hash = "sha256-KW6YyArM3rHOkhXJCRWWy9OSwMwRFr16njeN+EcSGz0=";
};
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/v${version}/docs/release_notes.rst";
license = licenses.asl20;
maintainers = with maintainers; [ dotlambda ];
};
}
|