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