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 = {