summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorJonathan Ringer <jonringer117@gmail.com>2020-09-28 10:14:37 -0700
committerJon <jonringer@users.noreply.github.com>2020-09-29 06:00:43 -0700
commit37169d74e5d7764fc7f97834938b5f72ee39ba18 (patch)
tree8e0b4a743e3708d7b8750dca9270eede4b2ee246 /pkgs/development
parent54863f8161903794e1fae14c6cb7e567e80cdab6 (diff)
downloadnixpkgs-37169d74e5d7764fc7f97834938b5f72ee39ba18.tar
nixpkgs-37169d74e5d7764fc7f97834938b5f72ee39ba18.tar.gz
nixpkgs-37169d74e5d7764fc7f97834938b5f72ee39ba18.tar.bz2
nixpkgs-37169d74e5d7764fc7f97834938b5f72ee39ba18.tar.lz
nixpkgs-37169d74e5d7764fc7f97834938b5f72ee39ba18.tar.xz
nixpkgs-37169d74e5d7764fc7f97834938b5f72ee39ba18.tar.zst
nixpkgs-37169d74e5d7764fc7f97834938b5f72ee39ba18.zip
python3Packages.azure-mgmt-compute: 13.0.0 -> 17.0.0
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/python-modules/azure-mgmt-compute/default.nix6
1 files 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" ];