From e505e4f20c88570dd8936ea9ee5f5da0387d9628 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Sun, 19 Jan 2025 21:14:05 +0100 Subject: [PATCH] python3Packages.aiobotocore: 2.15.1 -> 2.18.0 https://github.com/aio-libs/aiobotocore/releases/tag/2.18.0 --- pkgs/development/python-modules/aiobotocore/default.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/aiobotocore/default.nix b/pkgs/development/python-modules/aiobotocore/default.nix index e6a996ae712a..99c5e9320398 100644 --- a/pkgs/development/python-modules/aiobotocore/default.nix +++ b/pkgs/development/python-modules/aiobotocore/default.nix @@ -21,7 +21,7 @@ buildPythonPackage rec { pname = "aiobotocore"; - version = "2.15.1"; + version = "2.18.0"; pyproject = true; disabled = pythonOlder "3.8"; @@ -30,7 +30,7 @@ buildPythonPackage rec { owner = "aio-libs"; repo = "aiobotocore"; tag = version; - hash = "sha256-kPSkvvXBBwnWrdf0jmDNiTG6T1qpm5pNcPDHpnMFdmc="; + hash = "sha256-4S0CZtk5k+xke2WVwYrNyvP2up32xrOcdKNP72kO6zQ="; }; # Relax version constraints: aiobotocore works with newer botocore versions @@ -64,7 +64,6 @@ buildPythonPackage rec { disabledTestPaths = [ # Tests require network access - "tests/boto_tests/test_signers.py" "tests/python3.8/" "tests/test_basic_s3.py" "tests/test_batch.py" @@ -79,6 +78,8 @@ buildPythonPackage rec { "tests/test_sqs.py" "tests/test_version.py" "tests/test_waiter.py" + # moto compat issues + "tests/boto_tests/unit/test_signers.py" ]; disabledTests = @@ -101,7 +102,7 @@ buildPythonPackage rec { meta = with lib; { description = "Python client for amazon services"; homepage = "https://github.com/aio-libs/aiobotocore"; - changelog = "https://github.com/aio-libs/aiobotocore/releases/tag/${version}"; + changelog = "https://github.com/aio-libs/aiobotocore/releases/tag/${src.tag}"; license = licenses.asl20; maintainers = with maintainers; [ teh ]; };