python.pkgs.applicationinsights: init at 0.11.9

This commit is contained in:
Jonathan Ringer 2019-05-28 11:18:33 -07:00
parent 866026db1e
commit 81693c5675
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,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 ];
};
}

View File

@ -1068,6 +1068,8 @@ in {
application = callPackage ../development/python-modules/application { };
applicationinsights = callPackage ../development/python-modules/applicationinsights { };
appnope = callPackage ../development/python-modules/appnope { };
approvaltests = callPackage ../development/python-modules/approvaltests { };