1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 azure-common,
6 msrest,
7}:
8
9buildPythonPackage rec {
10 pname = "azure-applicationinsights";
11 version = "0.1.1";
12 format = "setuptools";
13
14 src = fetchPypi {
15 inherit pname version;
16 extension = "zip";
17 hash = "sha256-qIRbgDZbfyALrR9xqA0NMfO+wB7f1GfftsE+or1xupY=";
18 };
19
20 propagatedBuildInputs = [
21 azure-common
22 msrest
23 ];
24
25 # has no tests
26 doCheck = false;
27
28 meta = with lib; {
29 description = "This is the Microsoft Azure Application Insights Client Library";
30 homepage = "https://github.com/Azure/azure-sdk-for-python";
31 license = licenses.mit;
32 maintainers = with maintainers; [ maxwilson ];
33 };
34}