nixpkgs/pkgs/development/python-modules/aliyun-python-sdk-core/default.nix
2024-04-16 11:08:36 +02:00

53 lines
1013 B
Nix

{ lib
, buildPythonPackage
, cryptography
, fetchPypi
, jmespath
, pythonOlder
, pythonRelaxDepsHook
, setuptools
}:
buildPythonPackage rec {
pname = "aliyun-python-sdk-core";
version = "2.15.1";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-UYVQ0H9TfNOvrDtsk7XJl840QOTQwFTjrL2qgmHpCt8=";
};
pythonRelaxDeps = true;
build-system = [
setuptools
];
nativeBuildInputs = [
pythonRelaxDepsHook
];
dependencies = [
cryptography
jmespath
];
# All components are stored in a mono repo
doCheck = false;
pythonImportsCheck = [
"aliyunsdkcore"
];
meta = with lib; {
description = "Core module of Aliyun Python SDK";
homepage = "https://github.com/aliyun/aliyun-openapi-python-sdk";
changelog = "https://github.com/aliyun/aliyun-openapi-python-sdk/blob/master/aliyun-python-sdk-core/ChangeLog.txt";
license = licenses.asl20;
maintainers = with maintainers; [ fab ];
};
}