mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
python310Packages.aliyun-python-sdk-iot: init at 8.41.0
This commit is contained in:
parent
106690b6cf
commit
467b0b65a3
@ -0,0 +1,37 @@
|
||||
{ lib
|
||||
, aliyun-python-sdk-core
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, pythonOlder
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "aliyun-python-sdk-iot";
|
||||
version = "8.41.0";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
hash = "sha256-t/SIEW1JMTyeOhhxx6IhLsbQa0D3aqD2hqGk8+Ka0ns=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
aliyun-python-sdk-core
|
||||
];
|
||||
|
||||
# All components are stored in a mono repo
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [
|
||||
"aliyunsdkiot"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "IoT module of Aliyun Python SDK";
|
||||
homepage = "https://github.com/aliyun/aliyun-openapi-python-sdk";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
@ -491,6 +491,8 @@ in {
|
||||
|
||||
aliyun-python-sdk-dbfs = callPackage ../development/python-modules/aliyun-python-sdk-dbfs { };
|
||||
|
||||
aliyun-python-sdk-iot = callPackage ../development/python-modules/aliyun-python-sdk-iot { };
|
||||
|
||||
aliyun-python-sdk-kms = callPackage ../development/python-modules/aliyun-python-sdk-kms { };
|
||||
|
||||
aliyun-python-sdk-sts = callPackage ../development/python-modules/aliyun-python-sdk-sts { };
|
||||
|
Loading…
Reference in New Issue
Block a user