From bdb509e42b4437411c233e0623287da7a80864e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Sat, 11 Jan 2025 05:58:07 -0800 Subject: [PATCH] python313Packages.aioimaplib: 1.1.0 -> 1.2.0 Diff: https://github.com/bamthomas/aioimaplib/compare/refs/tags/1.1.0...1.2.0 --- .../python-modules/aioimaplib/default.nix | 24 +++++++++---------- 1 file changed, 11 insertions(+), 13 deletions(-) diff --git a/pkgs/development/python-modules/aioimaplib/default.nix b/pkgs/development/python-modules/aioimaplib/default.nix index 3946992eb8fd..3c8e43c83980 100644 --- a/pkgs/development/python-modules/aioimaplib/default.nix +++ b/pkgs/development/python-modules/aioimaplib/default.nix @@ -1,48 +1,46 @@ { lib, - asynctest, buildPythonPackage, - docutils, fetchFromGitHub, imaplib2, mock, + poetry-core, pyopenssl, + pytest-asyncio, pytestCheckHook, pythonOlder, pytz, - setuptools, - tzlocal, }: buildPythonPackage rec { pname = "aioimaplib"; - version = "1.1.0"; + version = "1.2.0"; pyproject = true; - disabled = pythonOlder "3.7"; + disabled = pythonOlder "3.9"; src = fetchFromGitHub { owner = "bamthomas"; repo = "aioimaplib"; tag = version; - hash = "sha256-TjCPGZGsSb+04kQNzHU3kWBo2vY34ujEqh1GIMIehJc="; + hash = "sha256-GBehZq2F9vJQGbeBuG1EGmTt8s7XcnTIIK0QQAB+ZII="; }; - build-system = [ setuptools ]; + build-system = [ poetry-core ]; nativeCheckInputs = [ - asynctest - docutils imaplib2 mock pyopenssl + pytest-asyncio pytestCheckHook pytz - tzlocal ]; - # https://github.com/bamthomas/aioimaplib/issues/54 - doCheck = pythonOlder "3.11"; + disabledTests = [ + # TimeoutError + "test_idle_start__exits_queue_get_without_timeout_error" + ]; pythonImportsCheck = [ "aioimaplib" ];