python3Packages.aliyun-python-sdk-core: migrate to finalAttrs

This commit is contained in:
Fabian Affolter 2026-07-04 00:53:19 +02:00
commit 5c5b842f2d

View file

@ -7,13 +7,13 @@
setuptools,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "aliyun-python-sdk-core";
version = "2.16.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
inherit (finalAttrs) pname version;
hash = "sha256-ZRyq1ZfrOdT61s+FEz3/6Sg31TvfYtudjzfatlCLuPk=";
};
@ -38,4 +38,4 @@ buildPythonPackage rec {
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ fab ];
};
}
})