python3Packages.azure-mgmt-policyinsights: 0.6.0 -> 1.0.0

authored by Jonathan Ringer and committed by Jonathan Ringer f0ec201d bb5fa00a

+6 -3
+6 -3
pkgs/development/python-modules/azure-mgmt-policyinsights/default.nix
··· 4 4 , msrest 5 5 , msrestazure 6 6 , azure-common 7 + , azure-mgmt-core 7 8 , azure-mgmt-nspkg 8 9 , isPy3k 9 10 }: 10 11 11 12 buildPythonPackage rec { 12 13 pname = "azure-mgmt-policyinsights"; 13 - version = "0.6.0"; 14 + version = "1.0.0"; 14 15 15 16 src = fetchPypi { 16 17 inherit pname version; 17 18 extension = "zip"; 18 - sha256 = "2c64533f6eab08dc16450fc5d7c7651557fc0edc8ef1278dda336333d648a7c4"; 19 + sha256 = "75103fb4541aeae30bb687dee1fedd9ca65530e6b97b2d9ea87f74816905202a"; 19 20 }; 20 21 21 22 propagatedBuildInputs = [ 23 + azure-common 24 + azure-mgmt-core 22 25 msrest 23 26 msrestazure 24 - azure-common 25 27 ] ++ lib.optionals (!isPy3k) [ 26 28 azure-mgmt-nspkg 27 29 ]; 28 30 29 31 # has no tests 30 32 doCheck = false; 33 + pythonImportsCheck = [ "azure.mgmt.policyinsights" ]; 31 34 32 35 meta = with lib; { 33 36 description = "This is the Microsoft Azure Policy Insights Client Library";