{ lib , buildPythonPackage , fetchPypi , python , isPy3k , msrest , msrestazure , azure-common , azure-mgmt-nspkg }: buildPythonPackage rec { pname = "azure-mgmt-loganalytics"; version = "0.5.0"; src = fetchPypi { inherit pname version; extension = "zip"; sha256 = "16f4c4f676ea718b7e1c59bd9a516fcfc796f1aff844b183a7ce9afe69fb214d"; }; propagatedBuildInputs = [ msrest msrestazure azure-common azure-mgmt-nspkg ]; 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; [ mwilsoninsight ]; }; }