python3Packages.azure-mgmt-notificationhubs: modernize

This commit is contained in:
Harinn
2026-06-05 10:47:43 +07:00
parent 63b7d327dc
commit 8212a2d007
@@ -10,15 +10,17 @@
azure-mgmt-nspkg,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "azure-mgmt-notificationhubs";
version = "8.0.0";
pyproject = true;
__structuredAttrs = true;
src = fetchPypi {
inherit pname version;
inherit (finalAttrs) pname version;
extension = "zip";
sha256 = "4dd924f4704993e3ebf1d42e2be1cbe0b0d908e695857fa08c4369ae11d0eb36";
hash = "sha256-Tdkk9HBJk+Pr8dQuK+HL4LDZCOaVhX+gjENprhHQ6zY=";
};
build-system = [ setuptools ];
@@ -34,10 +36,12 @@ buildPythonPackage rec {
# has no tests
doCheck = false;
pythonImportsCheck = [ "azure.mgmt.notificationhubs" ];
meta = {
description = "This is the Microsoft Azure Notification Hubs Management Client Library";
homepage = "https://github.com/Azure/azure-sdk-for-python";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ maxwilson ];
};
}
})