From e3ff5b9df8415a4f3f7c98aeaa17a3cbad5034d2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Wed, 17 Aug 2022 11:31:36 +0000 Subject: [PATCH] python310Packages.imapclient: 2.2.0 -> 2.3.1 --- .../python-modules/imapclient/default.nix | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/imapclient/default.nix b/pkgs/development/python-modules/imapclient/default.nix index c1394a7b6b53..2ef40452516d 100644 --- a/pkgs/development/python-modules/imapclient/default.nix +++ b/pkgs/development/python-modules/imapclient/default.nix @@ -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";