Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / applicationinsights / default.nix
blob9f77d4352647d89a36549fa5e3f2cd887b7a26e3
1 { buildPythonPackage
2 , lib
3 , fetchPypi
4 , portalocker
5 }:
7 buildPythonPackage rec {
8   version = "0.11.9";
9   pname = "applicationinsights";
11   src = fetchPypi {
12     inherit pname version;
13     sha256 = "1hyjdv6xnswgqvip8y164piwfach9hjkbp7vc2qzhd7amjpim89h";
14   };
16   propagatedBuildInputs = [ portalocker ];
18   meta = with lib; {
19     description = "This project extends the Application Insights API surface to support Python";
20     homepage = "https://github.com/Microsoft/ApplicationInsights-Python";
21     license = licenses.mit;
22     maintainers = with maintainers; [ jonringer ];
23   };