python310Packages.aliyun-python-sdk-sts: init at 3.1.0
This commit is contained in:
parent
d329b7d2ec
commit
34008193d5
2 changed files with 39 additions and 0 deletions
|
@ -0,0 +1,37 @@
|
|||
{ lib
|
||||
, aliyun-python-sdk-core
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, pythonOlder
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "aliyun-python-sdk-sts";
|
||||
version = "3.1.0";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
hash = "sha256-CpUMw2qdY+5a99WgFLp0p00kQVnuvf3yMOZqTztqnRA=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
aliyun-python-sdk-core
|
||||
];
|
||||
|
||||
# All components are stored in a mono repo
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [
|
||||
"aliyunsdksts"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "STS module of Aliyun Python SDK";
|
||||
homepage = "https://github.com/aliyun/aliyun-openapi-python-sdk";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
|
@ -493,6 +493,8 @@ in {
|
|||
|
||||
aliyun-python-sdk-kms = callPackage ../development/python-modules/aliyun-python-sdk-kms { };
|
||||
|
||||
aliyun-python-sdk-sts = callPackage ../development/python-modules/aliyun-python-sdk-sts { };
|
||||
|
||||
allpairspy = callPackage ../development/python-modules/allpairspy { };
|
||||
|
||||
allure-behave = callPackage ../development/python-modules/allure-behave { };
|
||||
|
|
Loading…
Reference in a new issue