diff --git a/pkgs/development/python-modules/twilio/default.nix b/pkgs/development/python-modules/twilio/default.nix index 55dee632e966..0a21259d8e3a 100644 --- a/pkgs/development/python-modules/twilio/default.nix +++ b/pkgs/development/python-modules/twilio/default.nix @@ -21,7 +21,7 @@ buildPythonPackage rec { pname = "twilio"; - version = "9.4.3"; + version = "9.4.4"; pyproject = true; disabled = pythonOlder "3.7"; @@ -30,7 +30,7 @@ buildPythonPackage rec { owner = "twilio"; repo = "twilio-python"; tag = version; - hash = "sha256-HgV6GEhtwk2smtzdOypucZBX+kj9lfqsY2sZ9Yl7fbM="; + hash = "sha256-qkbxu2FembYCdGOEaBmAod6HYGaulhcakTLgCHJoZZY="; }; build-system = [ setuptools ]; @@ -59,16 +59,11 @@ buildPythonPackage rec { "test_set_user_agent_extensions" ]; - disabledTestPaths = - [ - # Tests require API token - "tests/cluster/test_webhook.py" - "tests/cluster/test_cluster.py" - ] - ++ lib.optionals (pythonAtLeast "3.11") [ - # aiounittest is not supported on Python 3.12 - "tests/unit/http/test_async_http_client.py" - ]; + disabledTestPaths = [ + # Tests require API token + "tests/cluster/test_webhook.py" + "tests/cluster/test_cluster.py" + ]; pythonImportsCheck = [ "twilio" ];