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

View file

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