about summary refs log tree commit diff
path: root/pkgs/development/python-modules/applicationinsights/default.nix
blob: 9c4021bbad372b54b260ae42435b08748a58415b (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
25
26
{
  buildPythonPackage,
  lib,
  fetchPypi,
  portalocker,
}:

buildPythonPackage rec {
  version = "0.11.10";
  format = "setuptools";
  pname = "applicationinsights";

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

  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 ];
  };
}