From 008b6ffbc7245f4a19fdedf3cc1cd6c56155ec31 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Tue, 6 May 2025 03:28:28 -0700 Subject: [PATCH] python313Packages.aioboto3: 13.4.0 -> 14.2.0 Diff: https://github.com/terrycain/aioboto3/compare/refs/tags/v13.4.0...refs/tags/v14.2.0 Changelog: https://github.com/terrycain/aioboto3/blob/refs/tags/v14.2.0/CHANGELOG.rst --- .../python-modules/aioboto3/default.nix | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/pkgs/development/python-modules/aioboto3/default.nix b/pkgs/development/python-modules/aioboto3/default.nix index e96167296eab..810ec74151f4 100644 --- a/pkgs/development/python-modules/aioboto3/default.nix +++ b/pkgs/development/python-modules/aioboto3/default.nix @@ -8,25 +8,22 @@ dill, fetchFromGitHub, moto, - poetry-core, - poetry-dynamic-versioning, pytest-asyncio, pytestCheckHook, - pythonOlder, + setuptools, + setuptools-scm, }: buildPythonPackage rec { pname = "aioboto3"; - version = "13.4.0"; + version = "14.2.0"; pyproject = true; - disabled = pythonOlder "3.8"; - src = fetchFromGitHub { owner = "terrycain"; repo = "aioboto3"; tag = "v${version}"; - hash = "sha256-o3PynPW6nPvbBrsw+HU2fJheVRpCHCb0EnJdmseorsE="; + hash = "sha256-RzaMsJtGvC6IILgwj09kymw+Hv3gjyBf2PHBzYC9itE="; }; pythonRelaxDeps = [ @@ -34,8 +31,8 @@ buildPythonPackage rec { ]; build-system = [ - poetry-core - poetry-dynamic-versioning + setuptools + setuptools-scm ]; dependencies = [ @@ -58,6 +55,10 @@ buildPythonPackage rec { ++ moto.optional-dependencies.server ++ lib.flatten (builtins.attrValues optional-dependencies); + disabledTests = [ + "test_patches" + ]; + pythonImportsCheck = [ "aioboto3" ]; meta = {