blob: 51abf003111a7391d6d184663443813381015642 (
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
|
{
lib,
buildPythonPackage,
cryptography,
fetchPypi,
setuptools,
}:
buildPythonPackage (finalAttrs: {
pname = "alibabacloud-darabonba-signature-util";
version = "0.0.4";
pyproject = true;
__structuredAttrs = true;
src = fetchPypi {
pname = "alibabacloud_darabonba_signature_util";
inherit (finalAttrs) version;
hash = "sha256-cdebKuZZV7z79pnO2JT9p4KzL5Y18WFmNVM+WpDV/rA=";
};
build-system = [ setuptools ];
dependencies = [ cryptography ];
pythonImportsCheck = [ "alibabacloud_darabonba_signature_util" ];
# Module has no tests
doCheck = false;
meta = {
description = "Darabonba Signature Util Library for Alibaba Cloud Python SDK";
homepage = "https://github.com/aliyun/darabonba-crypto-util";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ fab ];
};
})
|