11 buildPythonPackage rec {
12 pname = "tencentcloud-sdk-python";
16 disabled = pythonOlder "3.9";
18 src = fetchFromGitHub {
19 owner = "TencentCloud";
20 repo = "tencentcloud-sdk-python";
21 rev = "refs/tags/${version}";
22 hash = "sha256-Etm3SESxpQWvI3nsrch4UeAchHnJufOFdAXm+2H3Xa4=";
25 build-system = [ setuptools ];
27 dependencies = [ requests ];
29 nativeCheckInputs = [ pytestCheckHook ];
31 pythonImportsCheck = [ "tencentcloud" ];
33 pytestFlagsArray = [ "tests/unit/" ];
36 description = "Tencent Cloud API 3.0 SDK for Python";
37 homepage = "https://github.com/TencentCloud/tencentcloud-sdk-python";
38 changelog = "https://github.com/TencentCloud/tencentcloud-sdk-python/blob/${version}/CHANGELOG.md";
39 license = licenses.asl20;
40 maintainers = with maintainers; [ fab ];