summary refs log tree commit diff
path: root/pkgs/development/python-modules/azure-mgmt-loganalytics
diff options
context:
space:
mode:
authorMax Wilson <max.wilson@insight.com>2019-04-29 18:45:23 -0400
committerWael M. Nasreddine <wael.nasreddine@gmail.com>2019-07-16 14:54:15 -0700
commitd169f956a7cf3ad39f1069e63898e817a4842aeb (patch)
treeee0b7da596636ed1fa172012e3b79893c011fc47 /pkgs/development/python-modules/azure-mgmt-loganalytics
parentd412d0545717793ba449225951a53e4a851221c4 (diff)
downloadnixpkgs-d169f956a7cf3ad39f1069e63898e817a4842aeb.tar
nixpkgs-d169f956a7cf3ad39f1069e63898e817a4842aeb.tar.gz
nixpkgs-d169f956a7cf3ad39f1069e63898e817a4842aeb.tar.bz2
nixpkgs-d169f956a7cf3ad39f1069e63898e817a4842aeb.tar.lz
nixpkgs-d169f956a7cf3ad39f1069e63898e817a4842aeb.tar.xz
nixpkgs-d169f956a7cf3ad39f1069e63898e817a4842aeb.tar.zst
nixpkgs-d169f956a7cf3ad39f1069e63898e817a4842aeb.zip
pythonPackages.azure-mgmt-loganalytics: init at 0.2.0
Diffstat (limited to 'pkgs/development/python-modules/azure-mgmt-loganalytics')
-rw-r--r--pkgs/development/python-modules/azure-mgmt-loganalytics/default.nix36
1 files changed, 36 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/azure-mgmt-loganalytics/default.nix b/pkgs/development/python-modules/azure-mgmt-loganalytics/default.nix
new file mode 100644
index 00000000000..3473b6e86b4
--- /dev/null
+++ b/pkgs/development/python-modules/azure-mgmt-loganalytics/default.nix
@@ -0,0 +1,36 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, msrest
+, msrestazure
+, azure-common
+, azure-mgmt-nspkg
+}:
+
+buildPythonPackage rec {
+  pname = "azure-mgmt-loganalytics";
+  version = "0.2.0";
+
+  src = fetchPypi {
+    inherit pname version;
+    extension = "zip";
+    sha256 = "c7315ff0ee4d618fb38dca68548ef4023a7a20ce00efe27eb2105a5426237d86";
+  };
+
+  propagatedBuildInputs = [
+    msrest
+    msrestazure
+    azure-common
+    azure-mgmt-nspkg
+  ];
+
+  # has no tests
+  doCheck = false;
+
+  meta = with lib; {
+    description = "This is the Microsoft Azure Log Analytics Management Client Library";
+    homepage = https://github.com/Azure/azure-sdk-for-python/tree/master/azure-mgmt-loganalytics;
+    license = licenses.mit;
+    maintainers = with maintainers; [ mwilsoninsight ];
+  };
+}