{ lib , buildPythonPackage , fetchPypi , python , isPy3k , msrest , msrestazure , azure-common , azure-mgmt-nspkg , azure-mgmt-core }: buildPythonPackage rec { pname = "azure-mgmt-loganalytics"; version = "7.0.0"; src = fetchPypi { inherit pname version; extension = "zip"; sha256 = "e603f9fc61b8d2f93d8814bcca012a8b425cf0c0320ddf1e84462929cf34d1af"; }; propagatedBuildInputs = [ msrest msrestazure azure-common azure-mgmt-nspkg azure-mgmt-core ]; pythonNamespaces = [ "azure.mgmt" ]; # has no tests doCheck = false; meta = with lib; { description = "This is the Microsoft Azure Log Analytics Management Client Library"; homepage = "https://github.com/Azure/azure-sdk-for-python"; license = licenses.mit; maintainers = with maintainers; [ maxwilson ]; }; }