summary refs log tree commit diff
path: root/pkgs/development/python-modules/applicationinsights/default.nix
blob: 10f66b24d14f3f750374de73d83e7bdd84cb6cc8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ buildPythonPackage
, lib
, fetchPypi
, portalocker
}:

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

  src = fetchPypi {
    inherit pname version;
    sha256 = "1hyjdv6xnswgqvip8y164piwfach9hjkbp7vc2qzhd7amjpim89h";
  };

  propagatedBuildInputs = [ portalocker ];

  meta = with 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; [ jonringer ];
  };
}