about summary refs log tree commit diff
path: root/pkgs/development/python-modules/azure-mgmt-kusto
diff options
context:
space:
mode:
authorJonathan Ringer <jonringer117@gmail.com>2021-03-11 07:31:54 -0800
committerJonathan Ringer <jonringer@users.noreply.github.com>2021-03-14 17:05:12 -0700
commitfe74a7c71b080a99e96ca12fd6175aaa73fa68c6 (patch)
tree0a37df16cd040f887ae6188578b0a1a66facafc2 /pkgs/development/python-modules/azure-mgmt-kusto
parent95b8b0d25683a5048f7625496de0d53150e715c6 (diff)
python3Packages.azure-mgmt-kusto: 0.10.0 -> 1.0.0
Diffstat (limited to 'pkgs/development/python-modules/azure-mgmt-kusto')
-rw-r--r--pkgs/development/python-modules/azure-mgmt-kusto/default.nix12
1 files changed, 9 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/azure-mgmt-kusto/default.nix b/pkgs/development/python-modules/azure-mgmt-kusto/default.nix
index 93c78c401f0c9..c5adc61ea2032 100644
--- a/pkgs/development/python-modules/azure-mgmt-kusto/default.nix
+++ b/pkgs/development/python-modules/azure-mgmt-kusto/default.nix
@@ -1,21 +1,27 @@
 { lib, buildPythonPackage, fetchPypi, isPy27
 , azure-common
+, azure-mgmt-core
 , msrest
 , msrestazure
 }:
 
 buildPythonPackage rec {
-  version = "0.10.0";
+  version = "1.0.0";
   pname = "azure-mgmt-kusto";
   disabled = isPy27;
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "09e8d4928e19d12feb374adb47651b474f3ee3bc6a12704e4b70c9b38e3bcd9e";
+    sha256 = "fa3ede0ebd6489bbf993f420bcb5fc63d9fad2a1e945c3c49b26fa012bb3534e";
     extension = "zip";
   };
 
-  propagatedBuildInputs = [ azure-common msrest msrestazure ];
+  propagatedBuildInputs = [
+    azure-common
+    azure-mgmt-core
+    msrest
+    msrestazure
+  ];
 
   # no tests included
   doCheck = false;