mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
37 lines
843 B
Nix
37 lines
843 B
Nix
{
|
|
lib,
|
|
alibabacloud-credentials,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
setuptools,
|
|
}:
|
|
|
|
buildPythonPackage (finalAttrs: {
|
|
pname = "alibabacloud-gateway-spi";
|
|
version = "0.0.4";
|
|
pyproject = true;
|
|
|
|
__structuredAttrs = true;
|
|
|
|
src = fetchPypi {
|
|
pname = "alibabacloud_gateway_spi";
|
|
inherit (finalAttrs) version;
|
|
hash = "sha256-c9biDWW1Tu0m2JwZZA06dXLhjEXsraYn+Ab12+jtITA=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies = [ alibabacloud-credentials ];
|
|
|
|
pythonImportsCheck = [ "alibabacloud_gateway_spi" ];
|
|
|
|
# Module has only tests in the untagged upstream repo
|
|
doCheck = false;
|
|
|
|
meta = {
|
|
description = "Aliyun Gateway SPI Library for Python";
|
|
homepage = "https://pypi.org/project/alibabacloud-gateway-spi/";
|
|
license = lib.licenses.asl20;
|
|
maintainers = with lib.maintainers; [ fab ];
|
|
};
|
|
})
|