ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / imapclient / default.nix
blob2ef40452516d69b2b4e446aec924594bcb4d3ecf
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , six
5 , pytestCheckHook
6 }:
8 buildPythonPackage rec {
9   pname = "imapclient";
10   version = "2.3.1";
12   format = "setuptools";
14   src = fetchFromGitHub {
15     owner = "mjs";
16     repo = "imapclient";
17     rev = version;
18     hash = "sha256-aHWRhQOEjYiLlWTiuYo/a4pOhfLF7jz+ltG+yOqgfKI=";
19   };
21   propagatedBuildInputs = [ six ];
23   checkInputs = [ pytestCheckHook ];
25   pythonImportsCheck = [
26     "imapclient"
27     "imapclient.response_types"
28     "imapclient.exceptions"
29     "imapclient.testable_imapclient"
30     "imapclient.tls"
31   ];
33   meta = with lib; {
34     homepage = "https://imapclient.readthedocs.io";
35     description = "Easy-to-use, Pythonic and complete IMAP client library";
36     license = licenses.bsd3;
37     maintainers = with maintainers; [ almac dotlambda ];
38   };