Merge pull request #187108 from dotlambda/imapclient-2.3.1

This commit is contained in:
Sandro 2022-08-21 04:28:12 +02:00 committed by GitHub
commit 16a08a4626
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,23 +3,32 @@
, fetchFromGitHub
, six
, pytestCheckHook
, mock
}:
buildPythonPackage rec {
pname = "imapclient";
version = "2.2.0";
version = "2.3.1";
format = "setuptools";
src = fetchFromGitHub {
owner = "mjs";
repo = "imapclient";
rev = version;
sha256 = "sha256-q/8LFKHgrY3pQV7Coz+5pZAw696uABMTEkYoli6C2KA=";
hash = "sha256-aHWRhQOEjYiLlWTiuYo/a4pOhfLF7jz+ltG+yOqgfKI=";
};
propagatedBuildInputs = [ six ];
checkInputs = [ pytestCheckHook mock ];
checkInputs = [ pytestCheckHook ];
pythonImportsCheck = [
"imapclient"
"imapclient.response_types"
"imapclient.exceptions"
"imapclient.testable_imapclient"
"imapclient.tls"
];
meta = with lib; {
homepage = "https://imapclient.readthedocs.io";