1{ lib
2, buildPythonPackage
3, fetchPypi
4, msrest
5, azure-common
6}:
7
8buildPythonPackage rec {
9 version = "0.1.0";
10 pname = "azure-loganalytics";
11
12 src = fetchPypi {
13 inherit pname version;
14 extension = "zip";
15 sha256 = "3ceb350def677a351f34b0a0d1637df6be0c6fe87ff32a5270b17f540f6da06e";
16 };
17
18 propagatedBuildInputs = [
19 msrest
20 azure-common
21 ];
22
23 # has no tests
24 doCheck = false;
25
26 meta = with lib; {
27 description = "This is the Microsoft Azure Log Analytics Client Library";
28 homepage = https://docs.microsoft.com/en-us/python/api/overview/azure/loganalytics/client?view=azure-python;
29 license = licenses.mit;
30 maintainers = with maintainers; [ mwilsoninsight ];
31 };
32}