10 buildPythonPackage rec {
14 disabled = pythonOlder "3.5";
18 src = fetchFromGitHub {
21 rev = "refs/tags/v${version}";
22 hash = "sha256-2qSmnJnjwXNysUh0xeXshLZklCIOd92aM3gXtL8JhlI=";
25 build-system = [ setuptools ];
27 nativeCheckInputs = [ pytestCheckHook ];
30 # tests require a network connection
39 pythonImportsCheck = [ "imap_tools" ];
42 description = "Work with email and mailbox by IMAP";
43 homepage = "https://github.com/ikvk/imap_tools";
44 changelog = "https://github.com/ikvk/imap_tools/blob/v${version}/docs/release_notes.rst";
45 license = licenses.asl20;
46 maintainers = with maintainers; [ dotlambda ];