python312Packages.twilio: 9.4.3 -> 9.4.4 (#378327)

This commit is contained in:
Nick Cao
2025-01-31 13:43:41 -05:00
committed by GitHub
@@ -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" ];