about summary refs log tree commit diff
path: root/pkgs/development/python-modules/azure-mgmt-kusto/default.nix
diff options
context:
space:
mode:
authorJonathan Ringer <jonringer117@gmail.com>2019-10-22 23:25:14 -0700
committerJon <jonringer@users.noreply.github.com>2019-11-23 19:47:04 -0800
commitf32d5830fab7533c51e1fbbf795c6813c3475ad4 (patch)
tree3be7c42a022d36c3839d5e2bdaca0373a650fc8d /pkgs/development/python-modules/azure-mgmt-kusto/default.nix
parentef72e0b197d8030ea952e9fe334b80a22b5e42f0 (diff)
downloadnixlib-f32d5830fab7533c51e1fbbf795c6813c3475ad4.tar
nixlib-f32d5830fab7533c51e1fbbf795c6813c3475ad4.tar.gz
nixlib-f32d5830fab7533c51e1fbbf795c6813c3475ad4.tar.bz2
nixlib-f32d5830fab7533c51e1fbbf795c6813c3475ad4.tar.lz
nixlib-f32d5830fab7533c51e1fbbf795c6813c3475ad4.tar.xz
nixlib-f32d5830fab7533c51e1fbbf795c6813c3475ad4.tar.zst
nixlib-f32d5830fab7533c51e1fbbf795c6813c3475ad4.zip
python3Packages.azure-mgmt-kusto: init at 0.4.0
Diffstat (limited to 'pkgs/development/python-modules/azure-mgmt-kusto/default.nix')
-rw-r--r--pkgs/development/python-modules/azure-mgmt-kusto/default.nix31
1 files changed, 31 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/azure-mgmt-kusto/default.nix b/pkgs/development/python-modules/azure-mgmt-kusto/default.nix
new file mode 100644
index 000000000000..fe84fc01dec1
--- /dev/null
+++ b/pkgs/development/python-modules/azure-mgmt-kusto/default.nix
@@ -0,0 +1,31 @@
+{ lib, buildPythonPackage, fetchPypi, isPy27
+, azure-common
+, msrest
+, msrestazure
+}:
+
+buildPythonPackage rec {
+  version = "0.4.0";
+  pname = "azure-mgmt-kusto";
+  disabled = isPy27;
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "1sx8f98206wccj0mbmb75c4wyhf57g3pnkhl9wn70lqzi9n4mk0b";
+    extension = "zip";
+  };
+
+  propagatedBuildInputs = [ azure-common msrest msrestazure ];
+
+  # no tests included
+  doCheck = false;
+
+  pythonImportsCheck = [ "azure.common" "azure.mgmt.kusto" ];
+
+  meta = with lib; {
+    description = "Microsoft Azure Kusto Management Client Library for Python";
+    homepage = "https://github.com/Azure/azure-sdk-for-python";
+    license = licenses.mit;
+    maintainers = with maintainers; [ jonringer ];
+  };
+}