Merge pull request #304498 from fabaff/aliyun-python-sdk-core-bump

python312Packages.aliyun-python-sdk-core: 2.15.0 -> 2.15.1
This commit is contained in:
Fabian Affolter 2024-04-16 12:35:08 +02:00 committed by GitHub
commit 44b176dbaf
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 19 additions and 19 deletions

View File

@ -1,29 +1,33 @@
{ lib
, buildPythonPackage
, cryptography
, fetchPypi
, jmespath
, pythonOlder
, pythonRelaxDepsHook
{
lib,
buildPythonPackage,
cryptography,
fetchPypi,
jmespath,
pythonOlder,
pythonRelaxDepsHook,
setuptools,
}:
buildPythonPackage rec {
pname = "aliyun-python-sdk-core";
version = "2.15.0";
format = "setuptools";
version = "2.15.1";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-7cRVVIjYqfHGG9QZx74nsjl0sqBSlxtGFPzSKerus4I=";
hash = "sha256-UYVQ0H9TfNOvrDtsk7XJl840QOTQwFTjrL2qgmHpCt8=";
};
nativeBuildInputs = [
pythonRelaxDepsHook
];
pythonRelaxDeps = true;
propagatedBuildInputs = [
build-system = [ setuptools ];
nativeBuildInputs = [ pythonRelaxDepsHook ];
dependencies = [
cryptography
jmespath
];
@ -31,11 +35,7 @@ buildPythonPackage rec {
# All components are stored in a mono repo
doCheck = false;
pythonRelaxDeps = true;
pythonImportsCheck = [
"aliyunsdkcore"
];
pythonImportsCheck = [ "aliyunsdkcore" ];
meta = with lib; {
description = "Core module of Aliyun Python SDK";