blob: 21566831604b76e2ac56c2a98894cbe9ca6a9c3a (
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
|
{
lib,
aliyun-log-fastpb,
buildPythonPackage,
fetchPypi,
lz4,
setuptools,
zstd,
}:
buildPythonPackage (finalAttrs: {
pname = "alibabacloud-gateway-sls-util";
version = "0.4.1";
pyproject = true;
__structuredAttrs = true;
src = fetchPypi {
pname = "alibabacloud_gateway_sls_util";
inherit (finalAttrs) version;
hash = "sha256-KJ8wLg4HRWvl+BG+m5tSZEVXauO5HxJfFYcNM1ohEjQ=";
};
build-system = [ setuptools ];
dependencies = [
aliyun-log-fastpb
lz4
zstd
];
pythonImportsCheck = [ "alibabacloud_gateway_sls_util" ];
# Module has no tests
doCheck = false;
meta = {
description = "Alibaba Gateway SLS Util Library for Python";
homepage = "https://pypi.org/project/alibabacloud-gateway-sls-util/";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ fab ];
};
})
|