{ lib, azure-common, azure-mgmt-core, buildPythonPackage, fetchPypi, msrest, msrestazure, setuptools, }: buildPythonPackage rec { pname = "azure-mgmt-advisor"; version = "9.0.0"; pyproject = true; src = fetchPypi { inherit pname version; extension = "zip"; hash = "sha256-/ECLNzFf6EeBtRkST4yxuKwQsvQkHkOdDT4l/WyhjXs="; }; build-system = [ setuptools ]; dependencies = [ msrest msrestazure azure-common azure-mgmt-core ]; # Module has no tests doCheck = false; meta = with lib; { description = "This is the Microsoft Azure Advisor Client Library"; homepage = "https://github.com/Azure/azure-sdk-for-python"; license = licenses.mit; maintainers = with maintainers; [ maxwilson ]; }; }