summary refs log tree commit diff
path: root/pkgs/development/python-modules/azure-mgmt-advisor
diff options
context:
space:
mode:
authorJonathan Ringer <jonringer117@gmail.com>2021-01-11 16:19:20 -0800
committerJonathan Ringer <jonringer@users.noreply.github.com>2021-01-12 06:24:34 -0800
commit0a7306cb8e6fe3f1362efd36c1b4ac69636a2a85 (patch)
treeb8f0381a57a1e894f4c915a25aff9176195b4c5f /pkgs/development/python-modules/azure-mgmt-advisor
parent4438fcdc77540deb3670045023bd1319ad74aef4 (diff)
downloadnixpkgs-0a7306cb8e6fe3f1362efd36c1b4ac69636a2a85.tar
nixpkgs-0a7306cb8e6fe3f1362efd36c1b4ac69636a2a85.tar.gz
nixpkgs-0a7306cb8e6fe3f1362efd36c1b4ac69636a2a85.tar.bz2
nixpkgs-0a7306cb8e6fe3f1362efd36c1b4ac69636a2a85.tar.lz
nixpkgs-0a7306cb8e6fe3f1362efd36c1b4ac69636a2a85.tar.xz
nixpkgs-0a7306cb8e6fe3f1362efd36c1b4ac69636a2a85.tar.zst
nixpkgs-0a7306cb8e6fe3f1362efd36c1b4ac69636a2a85.zip
python3Packages.azure-mgmt-advisor: 4.0.0 -> 9.0.0
Diffstat (limited to 'pkgs/development/python-modules/azure-mgmt-advisor')
-rw-r--r--pkgs/development/python-modules/azure-mgmt-advisor/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/azure-mgmt-advisor/default.nix b/pkgs/development/python-modules/azure-mgmt-advisor/default.nix
index a04f28f2a51..81afa6ff7ed 100644
--- a/pkgs/development/python-modules/azure-mgmt-advisor/default.nix
+++ b/pkgs/development/python-modules/azure-mgmt-advisor/default.nix
@@ -5,23 +5,25 @@
 , msrestazure
 , azure-common
 , isPy3k
+, azure-mgmt-core
 , azure-mgmt-nspkg
 }:
 
 buildPythonPackage rec {
   pname = "azure-mgmt-advisor";
-  version = "4.0.0";
+  version = "9.0.0";
 
   src = fetchPypi {
     inherit pname version;
     extension = "zip";
-    sha256 = "1ecea7a9dc48c099c06aab68aace7fdbded91a5522932882b1707c29fa055054";
+    sha256 = "fc408b37315fe84781b519124f8cb1b8ac10b2f4241e439d0d3e25fd6ca18d7b";
   };
 
   propagatedBuildInputs = [
     msrest
     msrestazure
     azure-common
+    azure-mgmt-core
   ] ++ lib.optionals (!isPy3k) [
     azure-mgmt-nspkg
   ];