nixpkgs/pkgs/development/python-modules/aliyun-python-sdk-core/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

45 lines
934 B
Nix
Raw Permalink Normal View History

{
lib,
buildPythonPackage,
cryptography,
fetchPypi,
jmespath,
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
pname = "aliyun-python-sdk-core";
version = "2.16.0";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-ZRyq1ZfrOdT61s+FEz3/6Sg31TvfYtudjzfatlCLuPk=";
};
pythonRelaxDeps = true;
build-system = [ setuptools ];
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 ];
};
}