Merge pull request #111464 from dotlambda/imap-tools-init
python3Packages.imap-tools: init at 0.37.0
This commit is contained in:
commit
8953657b2a
42
pkgs/development/python-modules/imap-tools/default.nix
Normal file
42
pkgs/development/python-modules/imap-tools/default.nix
Normal file
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user