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:38 -0700
committerJon <jonringer@users.noreply.github.com>2020-09-29 06:00:43 -0700
commit145af61ea4e035430ea4370d98801dd28f5935f5 (patch)
tree850f883ef5b538455289009a7c1eac13dc352fe2 /pkgs/development
parentb1b7e14ca4d3384f015f94c67513ac8e9ca61e4b (diff)
downloadnixpkgs-145af61ea4e035430ea4370d98801dd28f5935f5.tar
nixpkgs-145af61ea4e035430ea4370d98801dd28f5935f5.tar.gz
nixpkgs-145af61ea4e035430ea4370d98801dd28f5935f5.tar.bz2
nixpkgs-145af61ea4e035430ea4370d98801dd28f5935f5.tar.lz
nixpkgs-145af61ea4e035430ea4370d98801dd28f5935f5.tar.xz
nixpkgs-145af61ea4e035430ea4370d98801dd28f5935f5.tar.zst
nixpkgs-145af61ea4e035430ea4370d98801dd28f5935f5.zip
python3Packages.azure-mgmt-monitor: 0.11.0 -> 1.0.1
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/python-modules/azure-mgmt-monitor/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/azure-mgmt-monitor/default.nix b/pkgs/development/python-modules/azure-mgmt-monitor/default.nix
index 038ed52d768..3b85c9e9e83 100644
--- a/pkgs/development/python-modules/azure-mgmt-monitor/default.nix
+++ b/pkgs/development/python-modules/azure-mgmt-monitor/default.nix
@@ -6,23 +6,25 @@
 , msrest
 , msrestazure
 , azure-common
+, azure-mgmt-core
 , azure-mgmt-nspkg
 }:
 
 buildPythonPackage rec {
   pname = "azure-mgmt-monitor";
-  version = "0.11.0";
+  version = "1.0.1";
 
   src = fetchPypi {
     inherit pname version;
     extension = "zip";
-    sha256 = "c6e1fe83dd2ddffa7f6d90c7aa63b3128042396a3893c14dc4816ad28cb15016";
+    sha256 = "04bd89d74fe47f966b09e3256ffefcfa5c1a51057a6b33c092afe5ae17a1a7b7";
   };
 
   propagatedBuildInputs = [
     msrest
     msrestazure
     azure-common
+    azure-mgmt-core
   ] ++ lib.optionals (!isPy3k) [
     azure-mgmt-nspkg
   ];