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