mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
Darabonba Signature Util Library for Alibaba Cloud Python SDK https://github.com/aliyun/darabonba-crypto-util
37 lines
847 B
Nix
37 lines
847 B
Nix
{
|
|
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 ];
|
|
};
|
|
})
|