Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / azure-mgmt-policyinsights / default.nix
blobe92d7302d32cb0fcfa7b671cbb0698310669a999
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , msrest
5 , msrestazure
6 , azure-common
7 , azure-mgmt-core
8 , azure-mgmt-nspkg
9 , isPy3k
12 buildPythonPackage rec {
13   pname = "azure-mgmt-policyinsights";
14   version = "1.0.0";
15   format = "setuptools";
17   src = fetchPypi {
18     inherit pname version;
19     extension = "zip";
20     sha256 = "75103fb4541aeae30bb687dee1fedd9ca65530e6b97b2d9ea87f74816905202a";
21   };
23   propagatedBuildInputs = [
24     azure-common
25     azure-mgmt-core
26     msrest
27     msrestazure
28   ] ++ lib.optionals (!isPy3k) [
29     azure-mgmt-nspkg
30   ];
32   # has no tests
33   doCheck = false;
34   pythonImportsCheck = [ "azure.mgmt.policyinsights" ];
36   meta = with lib; {
37     description = "This is the Microsoft Azure Policy Insights Client Library";
38     homepage = "https://github.com/Azure/azure-sdk-for-python";
39     license = licenses.mit;
40     maintainers = with maintainers; [ maxwilson ];
41   };