summary refs log tree commit diff
path: root/pkgs/development/python-modules/azure-applicationinsights
diff options
context:
space:
mode:
authorMax Wilson <max.wilson@insight.com>2019-04-29 17:39:20 -0400
committerWael M. Nasreddine <wael.nasreddine@gmail.com>2019-07-16 14:53:32 -0700
commita18f5138e1f95e34350ba448e7d8e86dbb193780 (patch)
tree42dec3522ed0ccda3450df4a40126ceb458a288e /pkgs/development/python-modules/azure-applicationinsights
parentd5dadfa05958a002275de2452b4c086f15d4a0eb (diff)
downloadnixpkgs-a18f5138e1f95e34350ba448e7d8e86dbb193780.tar
nixpkgs-a18f5138e1f95e34350ba448e7d8e86dbb193780.tar.gz
nixpkgs-a18f5138e1f95e34350ba448e7d8e86dbb193780.tar.bz2
nixpkgs-a18f5138e1f95e34350ba448e7d8e86dbb193780.tar.lz
nixpkgs-a18f5138e1f95e34350ba448e7d8e86dbb193780.tar.xz
nixpkgs-a18f5138e1f95e34350ba448e7d8e86dbb193780.tar.zst
nixpkgs-a18f5138e1f95e34350ba448e7d8e86dbb193780.zip
pythonPackages.azure-applicationinsights: init at 0.1.0
Diffstat (limited to 'pkgs/development/python-modules/azure-applicationinsights')
-rw-r--r--pkgs/development/python-modules/azure-applicationinsights/default.nix32
1 files changed, 32 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/azure-applicationinsights/default.nix b/pkgs/development/python-modules/azure-applicationinsights/default.nix
new file mode 100644
index 00000000000..74f7cf61b13
--- /dev/null
+++ b/pkgs/development/python-modules/azure-applicationinsights/default.nix
@@ -0,0 +1,32 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, azure-common
+, msrest
+}:
+
+buildPythonPackage rec {
+  pname = "azure-applicationinsights";
+  version = "0.1.0";
+
+  src = fetchPypi {
+    inherit pname version;
+    extension = "zip";
+    sha256 = "6e1839169bb6ffd2d2c21ee3f4afbdd068ea428ad47cf884ea3167ecf7fd0859";
+  };
+
+  propagatedBuildInputs = [
+    azure-common
+    msrest
+  ];
+
+  # has no tests
+  doCheck = false;
+
+  meta = with lib; {
+    description = "This is the Microsoft Azure Application Insights Client Library";
+    homepage = https://github.com/Azure/azure-sdk-for-python/tree/master/azure-applicotioninsights;
+    license = licenses.mit;
+    maintainers = with maintainers; [ mwilsoninsight ];
+  };
+}