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