Merge pull request #111464 from dotlambda/imap-tools-init

python3Packages.imap-tools: init at 0.37.0
This commit is contained in:
Sandro 2021-01-31 17:53:22 +01:00 committed by GitHub
commit 8953657b2a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 44 additions and 0 deletions

@ -0,0 +1,42 @@
{ lib
, buildPythonPackage
, isPy27
, fetchFromGitHub
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "imap-tools";
version = "0.37.0";
disabled = isPy27;
src = fetchFromGitHub {
owner = "ikvk";
repo = "imap_tools";
rev = "v${version}";
sha256 = "1501lk3fjxqmzxffahbj33y795gwl96yqvk3fs86cchm6vz2gnkk";
};
checkInputs = [
pytestCheckHook
];
disabledTests = [
# tests require a network connection
"test_action"
"test_folders"
"test_connectio"
"test_attributes"
"test_live"
];
pythonImportsCheck = [ "imap_tools" ];
meta = with lib; {
description = "Work with email and mailbox by IMAP";
homepage = "https://github.com/ikvk/imap_tools";
license = licenses.asl20;
maintainers = with maintainers; [ dotlambda ];
};
}

@ -3102,6 +3102,8 @@ in {
imaplib2 = callPackage ../development/python-modules/imaplib2 { };
imap-tools = callPackage ../development/python-modules/imap-tools { };
imbalanced-learn = if isPy27 then
callPackage ../development/python-modules/imbalanced-learn/0.4.nix { }
else