mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-11-09 16:18:34 +01:00
46 lines
1 KiB
Nix
46 lines
1 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
pytestCheckHook,
|
|
requests,
|
|
setuptools,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "tencentcloud-sdk-python";
|
|
version = "3.0.1484";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "TencentCloud";
|
|
repo = "tencentcloud-sdk-python";
|
|
tag = version;
|
|
hash = "sha256-nAfQTg4sufpyKAH37/TaUzklvIY5UPTLKf0t3chUAcI=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies = [ requests ];
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
pythonImportsCheck = [ "tencentcloud" ];
|
|
|
|
enabledTestPaths = [ "tests/unit/" ];
|
|
|
|
disabledTests = [
|
|
# KeyError
|
|
"test_sts_credential_with_default_endpoint"
|
|
"test_sts_credential_with_set_endpoint"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Tencent Cloud API 3.0 SDK for Python";
|
|
homepage = "https://github.com/TencentCloud/tencentcloud-sdk-python";
|
|
changelog = "https://github.com/TencentCloud/tencentcloud-sdk-python/blob/${version}/CHANGELOG.md";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|