summary refs log tree commit diff
path: root/pkgs/development/python-modules/azure-mgmt-security/default.nix
diff options
context:
space:
mode:
authorJonathan Ringer <jonringer117@gmail.com>2021-01-11 16:19:24 -0800
committerJonathan Ringer <jonringer@users.noreply.github.com>2021-01-12 06:24:34 -0800
commit97e067707fc2650063fbf0f2df6bdf847e616167 (patch)
treef384e9863afa19a6325218f5dbd9df2344c91401 /pkgs/development/python-modules/azure-mgmt-security/default.nix
parent9071a6f006ea75ff598e3fe6814deea7a82665de (diff)
python3Packages.azure-mgmt-security: 0.6.0 -> 1.0.0
Diffstat (limited to 'pkgs/development/python-modules/azure-mgmt-security/default.nix')
-rw-r--r--pkgs/development/python-modules/azure-mgmt-security/default.nix12
1 files changed, 9 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/azure-mgmt-security/default.nix b/pkgs/development/python-modules/azure-mgmt-security/default.nix
index 9de17636b2342..a947e84f9aef8 100644
--- a/pkgs/development/python-modules/azure-mgmt-security/default.nix
+++ b/pkgs/development/python-modules/azure-mgmt-security/default.nix
@@ -1,21 +1,27 @@
 { lib, buildPythonPackage, fetchPypi, isPy27
 , azure-common
+, azure-mgmt-core
 , msrest
 , msrestazure
 }:
 
 buildPythonPackage rec {
-  version = "0.6.0";
+  version = "1.0.0";
   pname = "azure-mgmt-security";
   disabled = isPy27;
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "9f37d0151d730801222af111f0830905634795dbfd59ad1b89c35197421e74d3";
+    sha256 = "ae1cff598dfe80e93406e524c55c3f2cbffced9f9b7a5577e3375008a4c3bcad";
     extension = "zip";
   };
 
-  propagatedBuildInputs = [ azure-common msrest msrestazure ];
+  propagatedBuildInputs = [
+    azure-common
+    azure-mgmt-core
+    msrest
+    msrestazure
+  ];
 
   # no tests included
   doCheck = false;