Merge pull request #302114 from fabaff/twilio-bump

python312Packages.twilio: 9.0.3 -> 9.0.4
This commit is contained in:
Nick Cao 2024-04-06 11:39:41 -04:00 committed by GitHub
commit a576c6fd0b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 22 additions and 25 deletions

View File

@ -1,25 +1,26 @@
{ lib
, aiohttp
, aiohttp-retry
, aiounittest
, buildPythonPackage
, cryptography
, django
, fetchFromGitHub
, mock
, multidict
, pyngrok
, pyjwt
, pytestCheckHook
, pythonOlder
, pytz
, requests
, setuptools
{
lib,
aiohttp,
aiohttp-retry,
aiounittest,
buildPythonPackage,
cryptography,
django,
fetchFromGitHub,
mock,
multidict,
pyngrok,
pyjwt,
pytestCheckHook,
pythonOlder,
pytz,
requests,
setuptools,
}:
buildPythonPackage rec {
pname = "twilio";
version = "9.0.3";
version = "9.0.4";
pyproject = true;
disabled = pythonOlder "3.7";
@ -28,12 +29,10 @@ buildPythonPackage rec {
owner = "twilio";
repo = "twilio-python";
rev = "refs/tags/${version}";
hash = "sha256-MyK5ICGNR3BEJtVhFM3A6azceU5HjSDep4tpuQ8D4Rs=";
hash = "sha256-3014wT7DXRlWvRxfqx/wIR9v9uX9QROQICDHXcgtOHs=";
};
build-system = [
setuptools
];
build-system = [ setuptools ];
dependencies = [
aiohttp
@ -68,9 +67,7 @@ buildPythonPackage rec {
"tests/cluster/test_cluster.py"
];
pythonImportsCheck = [
"twilio"
];
pythonImportsCheck = [ "twilio" ];
meta = with lib; {
description = "Twilio API client and TwiML generator";