python3Packages.azure-mgmt-servicelinker: modernize

This commit is contained in:
Harinn
2026-06-04 22:18:02 +07:00
parent 1497247b4a
commit 76abc5fb2a
@@ -8,13 +8,15 @@
setuptools,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "azure-mgmt-servicelinker";
version = "1.1.0";
pyproject = true;
__structuredAttrs = true;
src = fetchPypi {
inherit pname version;
inherit (finalAttrs) pname version;
hash = "sha256-QVw6Y9HachwBRwCbF0cSGLCAkSJtNnXBvsj5YX1TmJU=";
extension = "zip";
};
@@ -38,4 +40,4 @@ buildPythonPackage rec {
license = lib.licenses.mit;
maintainers = [ ];
};
}
})