python3Packages.azure-mgmt-advisor: 4.0.0 -> 9.0.0

This commit is contained in:
Jonathan Ringer 2021-01-11 16:19:20 -08:00 committed by Jonathan Ringer
parent 4438fcdc77
commit 0a7306cb8e

View File

@ -5,23 +5,25 @@
, msrestazure , msrestazure
, azure-common , azure-common
, isPy3k , isPy3k
, azure-mgmt-core
, azure-mgmt-nspkg , azure-mgmt-nspkg
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "azure-mgmt-advisor"; pname = "azure-mgmt-advisor";
version = "4.0.0"; version = "9.0.0";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
extension = "zip"; extension = "zip";
sha256 = "1ecea7a9dc48c099c06aab68aace7fdbded91a5522932882b1707c29fa055054"; sha256 = "fc408b37315fe84781b519124f8cb1b8ac10b2f4241e439d0d3e25fd6ca18d7b";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
msrest msrest
msrestazure msrestazure
azure-common azure-common
azure-mgmt-core
] ++ lib.optionals (!isPy3k) [ ] ++ lib.optionals (!isPy3k) [
azure-mgmt-nspkg azure-mgmt-nspkg
]; ];