1{ lib 2, buildPythonPackage 3, fetchPypi 4, msrest 5, msrestazure 6, azure-common 7, azure-mgmt-nspkg 8, azure-mgmt-core 9}: 10 11buildPythonPackage rec { 12 pname = "azure-mgmt-loganalytics"; 13 version = "11.0.0"; 14 15 src = fetchPypi { 16 inherit pname version; 17 extension = "zip"; 18 sha256 = "41671fc6e95180fb6147cb40567410c34b85fb69bb0a9b3e09feae1ff370ee9d"; 19 }; 20 21 propagatedBuildInputs = [ 22 msrest 23 msrestazure 24 azure-common 25 azure-mgmt-nspkg 26 azure-mgmt-core 27 ]; 28 29 pythonNamespaces = [ "azure.mgmt" ]; 30 31 # has no tests 32 doCheck = false; 33 34 pythonImportsCheck = [ "azure.mgmt.loganalytics" ]; 35 36 meta = with lib; { 37 description = "This is the Microsoft Azure Log Analytics Management Client Library"; 38 homepage = "https://github.com/Azure/azure-sdk-for-python"; 39 license = licenses.mit; 40 maintainers = with maintainers; [ maxwilson ]; 41 }; 42}