python3Packages.azure-mgmt-subscription: 0.7.0 -> 1.0.0

This commit is contained in:
Jonathan Ringer 2021-01-11 16:19:24 -08:00 committed by Jonathan Ringer
parent 97e067707f
commit 2011186c9e

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-subscription"; pname = "azure-mgmt-subscription";
version = "0.7.0"; version = "1.0.0";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
extension = "zip"; extension = "zip";
sha256 = "37f570b8872ae65dce312da116588ab8407a5c8a10d959597e61d19b21799f77"; sha256 = "22f606f298419f466a8149811fc762686c93da00a7dc15d3b7cdbf22b96cf5db";
}; };
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.subscription" ];
meta = with lib; { meta = with lib; {
description = "This is the Microsoft Azure Subscription Management Client Library"; description = "This is the Microsoft Azure Subscription Management Client Library";