1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5 msrest, 6 msrestazure, 7 azure-common, 8 azure-mgmt-core, 9}: 10 11buildPythonPackage rec { 12 pname = "azure-mgmt-loganalytics"; 13 version = "12.0.0"; 14 format = "setuptools"; 15 16 src = fetchPypi { 17 inherit pname version; 18 extension = "zip"; 19 sha256 = "da128a7e0291be7fa2063848df92a9180cf5c16d42adc09d2bc2efd711536bfb"; 20 }; 21 22 propagatedBuildInputs = [ 23 msrest 24 msrestazure 25 azure-common 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}