blob: 2af3b7e26e20ecff06cc126c68e52277e841bfc5 (
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
|
{
lib,
aliyun-python-sdk-core,
buildPythonPackage,
fetchPypi,
}:
buildPythonPackage rec {
pname = "aliyun-python-sdk-iot";
version = "8.59.0";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-v0jTMKtYrbEBVjHQokpWSlcJBALZFsuoYHq8wCP8w1E=";
};
propagatedBuildInputs = [ aliyun-python-sdk-core ];
# All components are stored in a mono repo
doCheck = false;
pythonImportsCheck = [ "aliyunsdkiot" ];
meta = {
description = "IoT module of Aliyun Python SDK";
homepage = "https://github.com/aliyun/aliyun-openapi-python-sdk";
changelog = "https://github.com/aliyun/aliyun-openapi-python-sdk/blob/master/aliyun-python-sdk-iot/ChangeLog.txt";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ fab ];
};
}
|