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