summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/imapclient
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/imapclient')
-rw-r--r--pkgs/development/python-modules/imapclient/default.nix17
1 files changed, 6 insertions, 11 deletions
diff --git a/pkgs/development/python-modules/imapclient/default.nix b/pkgs/development/python-modules/imapclient/default.nix
index 27667f860ff1..ea4f388b6c7e 100644
--- a/pkgs/development/python-modules/imapclient/default.nix
+++ b/pkgs/development/python-modules/imapclient/default.nix
@@ -1,35 +1,30 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
-, mock
, six
+, pytestCheckHook
+, mock
}:
buildPythonPackage rec {
pname = "IMAPClient";
- version = "2.1.0";
+ version = "2.2.0";
src = fetchFromGitHub {
owner = "mjs";
repo = "imapclient";
rev = version;
- sha256 = "1zc8qj8ify2zygbz255b6fcg7jhprswf008ccwjmbrnj08kh9l4x";
+ sha256 = "sha256-q/8LFKHgrY3pQV7Coz+5pZAw696uABMTEkYoli6C2KA=";
};
- # fix test failing in python 36
- postPatch = ''
- substituteInPlace tests/test_imapclient.py \
- --replace "if sys.version_info >= (3, 7):" "if sys.version_info >= (3, 6, 4):"
- '';
-
propagatedBuildInputs = [ six ];
- checkInputs = [ mock ];
+ checkInputs = [ pytestCheckHook mock ];
meta = with lib; {
homepage = "https://imapclient.readthedocs.io";
description = "Easy-to-use, Pythonic and complete IMAP client library";
license = licenses.bsd3;
- maintainers = [ maintainers.almac ];
+ maintainers = with maintainers; [ almac dotlambda ];
};
}