aboutsummaryrefslogtreecommitdiffstats
path: root/pkgs/development/python-modules/applicationinsights/default.nix
blob: 5f97d9d128158678aad984cb5304f0e219278768 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ stdenv, buildPythonPackage, fetchPypi }:

buildPythonPackage rec {
  pname = "applicationinsights";
  version = "0.11.6";

  src = fetchPypi {
    inherit pname version;
    sha256 = "0b5abcdxbakqxsha6427qjwgvgh7j8p57apw495rvzm6hcv9d302";
  };

  doCheck = false;

  meta = with stdenv.lib; {
    description = "This project extends the Application Insights API surface to support Python.";
    homepage = https://github.com/Microsoft/ApplicationInsights-Python;
    license = licenses.mit;
    maintainers = with maintainers; [ stesie ];
  };
}