Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib 2, buildPythonPackage 3, fetchPypi 4, python 5, isPy3k 6, msrest 7, azure-common 8}: 9 10buildPythonPackage rec { 11 version = "0.1.0"; 12 pname = "azure-loganalytics"; 13 14 src = fetchPypi { 15 inherit pname version; 16 extension = "zip"; 17 sha256 = "3ceb350def677a351f34b0a0d1637df6be0c6fe87ff32a5270b17f540f6da06e"; 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; [ mwilsoninsight jonringer ]; 35 }; 36}