From 37169d74e5d7764fc7f97834938b5f72ee39ba18 Mon Sep 17 00:00:00 2001 From: Jonathan Ringer Date: Mon, 28 Sep 2020 10:14:37 -0700 Subject: [PATCH] python3Packages.azure-mgmt-compute: 13.0.0 -> 17.0.0 --- .../python-modules/azure-mgmt-compute/default.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/azure-mgmt-compute/default.nix b/pkgs/development/python-modules/azure-mgmt-compute/default.nix index 5d80bace33f..9acf4ddadc4 100644 --- a/pkgs/development/python-modules/azure-mgmt-compute/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-compute/default.nix @@ -3,21 +3,23 @@ , fetchPypi , python , azure-mgmt-common +, azure-mgmt-core , isPy3k }: buildPythonPackage rec { - version = "13.0.0"; + version = "17.0.0"; pname = "azure-mgmt-compute"; src = fetchPypi { inherit pname version; extension = "zip"; - sha256 = "7f331bafcbedf25d65aa42038f7553747dab18d7f10a5af3297192d31c45339e"; + sha256 = "c7350b404e5d10a548ceddb034394c8fad6c852ce33a3d3b211065813c1da404"; }; propagatedBuildInputs = [ azure-mgmt-common + azure-mgmt-core ]; pythonNamespaces = [ "azure.mgmt" ];