blob: 5e3aa2bc0635de70d1a906080680a5102b5a335c (
plain)
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
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
six,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "imapclient";
version = "3.1.0";
format = "setuptools";
src = fetchFromGitHub {
owner = "mjs";
repo = "imapclient";
tag = version;
hash = "sha256-J+pB+jXAoZItvaR8o+97sETFYxWj+uslmvsAe/Q0Gzc=";
};
propagatedBuildInputs = [ six ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [
"imapclient"
"imapclient.response_types"
"imapclient.exceptions"
"imapclient.testable_imapclient"
"imapclient.tls"
];
meta = {
homepage = "https://imapclient.readthedocs.io";
description = "Easy-to-use, Pythonic and complete IMAP client library";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [
almac
dotlambda
];
};
}
|