Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / azure-mgmt-loganalytics / default.nix
blob9629c6e7bba0685c4393cd0f637cea6059cd2dc2
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , msrest
5 , msrestazure
6 , azure-common
7 , azure-mgmt-core
8 }:
10 buildPythonPackage rec {
11   pname = "azure-mgmt-loganalytics";
12   version = "12.0.0";
14   src = fetchPypi {
15     inherit pname version;
16     extension = "zip";
17     sha256 = "da128a7e0291be7fa2063848df92a9180cf5c16d42adc09d2bc2efd711536bfb";
18   };
20   propagatedBuildInputs = [
21     msrest
22     msrestazure
23     azure-common
24     azure-mgmt-core
25   ];
27   pythonNamespaces = [ "azure.mgmt" ];
29   # has no tests
30   doCheck = false;
32   pythonImportsCheck = [ "azure.mgmt.loganalytics" ];
34   meta = with lib; {
35     description = "This is the Microsoft Azure Log Analytics Management Client Library";
36     homepage = "https://github.com/Azure/azure-sdk-for-python";
37     license = licenses.mit;
38     maintainers = with maintainers; [ maxwilson ];
39   };