blob: e2ee18952e52e395ff9249548db0f1d1947c075d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
{
lib,
aiohttp,
buildPythonPackage,
fetchPypi,
requests,
setuptools,
}:
buildPythonPackage rec {
pname = "alibabacloud-tea";
version = "0.4.3";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-7IBT0KqNQ+vh3rYy1cVAQzmznsmhigcH1Xdlg4QYUEo=";
};
build-system = [ setuptools ];
dependencies = [
aiohttp
requests
];
pythonImportsCheck = [ "Tea" ];
# Module has only tests in the untagged upstream repo
doCheck = false;
meta = {
description = "Aliyun Tea Library for Python";
homepage = "https://pypi.org/project/alibabacloud-tea/";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ fab ];
};
}
|