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

This commit is contained in:
Jonathan Ringer 2021-01-11 16:19:23 -08:00 committed by Jonathan Ringer
parent bb5fa00a4c
commit f0ec201d42

View File

@ -4,30 +4,33 @@
, msrest , msrest
, msrestazure , msrestazure
, azure-common , azure-common
, azure-mgmt-core
, azure-mgmt-nspkg , azure-mgmt-nspkg
, isPy3k , isPy3k
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "azure-mgmt-policyinsights"; pname = "azure-mgmt-policyinsights";
version = "0.6.0"; version = "1.0.0";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
extension = "zip"; extension = "zip";
sha256 = "2c64533f6eab08dc16450fc5d7c7651557fc0edc8ef1278dda336333d648a7c4"; sha256 = "75103fb4541aeae30bb687dee1fedd9ca65530e6b97b2d9ea87f74816905202a";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
azure-common
azure-mgmt-core
msrest msrest
msrestazure msrestazure
azure-common
] ++ lib.optionals (!isPy3k) [ ] ++ lib.optionals (!isPy3k) [
azure-mgmt-nspkg azure-mgmt-nspkg
]; ];
# has no tests # has no tests
doCheck = false; doCheck = false;
pythonImportsCheck = [ "azure.mgmt.policyinsights" ];
meta = with lib; { meta = with lib; {
description = "This is the Microsoft Azure Policy Insights Client Library"; description = "This is the Microsoft Azure Policy Insights Client Library";