Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.09 36 lines 776 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, msrest 5, msrestazure 6, azure-common 7, azure-mgmt-nspkg 8}: 9 10buildPythonPackage rec { 11 pname = "azure-mgmt-loganalytics"; 12 version = "0.2.0"; 13 14 src = fetchPypi { 15 inherit pname version; 16 extension = "zip"; 17 sha256 = "c7315ff0ee4d618fb38dca68548ef4023a7a20ce00efe27eb2105a5426237d86"; 18 }; 19 20 propagatedBuildInputs = [ 21 msrest 22 msrestazure 23 azure-common 24 azure-mgmt-nspkg 25 ]; 26 27 # has no tests 28 doCheck = false; 29 30 meta = with lib; { 31 description = "This is the Microsoft Azure Log Analytics Management Client Library"; 32 homepage = https://github.com/Azure/azure-sdk-for-python/tree/master/azure-mgmt-loganalytics; 33 license = licenses.mit; 34 maintainers = with maintainers; [ mwilsoninsight ]; 35 }; 36}