python3Packages.azure-mgmt-rdbms: modernize

This commit is contained in:
Harinn
2026-06-04 22:13:17 +07:00
parent 1ddd60f2a7
commit 8eef6e68f3

View File

@@ -11,13 +11,15 @@
isPy3k,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "azure-mgmt-rdbms";
version = "10.1.0";
pyproject = true;
__structuredAttrs = true;
src = fetchPypi {
inherit pname version;
inherit (finalAttrs) pname version;
extension = "zip";
hash = "sha256-qH1AHIdshHNM3UiIr1UeShRhtLMo2YFq9gy4rFl58DU=";
};
@@ -42,4 +44,4 @@ buildPythonPackage rec {
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ maxwilson ];
};
}
})