blob: 22a18a9fae3a03a4b5717ba6656f8465c3afbe97 (
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
39
40
41
42
43
44
45
46
|
{
lib,
aiofiles,
alibabacloud-credentials-api,
alibabacloud-tea,
apscheduler,
buildPythonPackage,
fetchPypi,
setuptools,
}:
buildPythonPackage (finalAttrs: {
pname = "alibabacloud-credentials";
version = "1.0.12";
pyproject = true;
src = fetchPypi {
pname = "alibabacloud_credentials";
inherit (finalAttrs) version;
hash = "sha256-h9pB6j/7FGtE2ZnGLBYMK5awwwJ1rjUgW83+eboMQRk=";
};
pythonRelaxDeps = [ "aiofiles" ];
build-system = [ setuptools ];
dependencies = [
aiofiles
alibabacloud-credentials-api
alibabacloud-tea
apscheduler
];
pythonImportsCheck = [ "alibabacloud_credentials" ];
# Module has only tests in the untagged upstream repo
doCheck = false;
meta = {
description = "Aliyun Credentials Library for Python";
homepage = "https://github.com/aliyun/credentials-python";
changelog = "https://github.com/aliyun/credentials-python/releases/tag/v${finalAttrs.version}";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ fab ];
};
})
|