summaryrefslogtreecommitdiffstats
path: root/pkgs/development
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2021-01-31 17:53:22 +0100
committerGitHub <noreply@github.com>2021-01-31 17:53:22 +0100
commit8953657b2aa16fef7a262643f3af6202d2117436 (patch)
treef9a2b496c320b5617dda9075d1280ec90f5062ce /pkgs/development
parent539c63108bb7611ae3b3404fe8e2f9580e2e291f (diff)
parent26a5eeab4bec8ce19711d8d74c8521c78d93c0e5 (diff)
Merge pull request #111464 from dotlambda/imap-tools-init
python3Packages.imap-tools: init at 0.37.0
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/python-modules/imap-tools/default.nix42
1 files changed, 42 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/imap-tools/default.nix b/pkgs/development/python-modules/imap-tools/default.nix
new file mode 100644
index 000000000000..107febe4041b
--- /dev/null
+++ b/pkgs/development/python-modules/imap-tools/default.nix
@@ -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 ];
+ };
+}