python3Packages.azure-mgmt-common: modernize

This commit is contained in:
Harinn
2026-06-04 21:27:45 +07:00
parent 5d51623387
commit 170a561533
@@ -11,15 +11,17 @@
isPy3k,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
version = "0.20.0";
pyproject = true;
__structuredAttrs = true;
pname = "azure-mgmt-common";
src = fetchPypi {
inherit pname version;
inherit (finalAttrs) pname version;
extension = "zip";
sha256 = "c63812c13d9f36615c07f874bc602b733bb516f1ed62ab73189b8f71c6bfbfe6";
hash = "sha256-xjgSwT2fNmFcB/h0vGArczu1FvHtYqtzGJuPcca/v+Y=";
};
build-system = [ setuptools ];
@@ -38,6 +40,8 @@ buildPythonPackage rec {
doCheck = false;
pythonImportsCheck = [ "azure.mgmt.common" ];
meta = {
description = "This is the Microsoft Azure Resource Management common code";
homepage = "https://github.com/Azure/azure-sdk-for-python";
@@ -47,4 +51,4 @@ buildPythonPackage rec {
maxwilson
];
};
}
})