depot/third_party/nixpkgs/pkgs/development/python-modules/applicationinsights/default.nix
Default email 5ca88bfbb9 Project import generated by Copybara.
GitOrigin-RevId: 9f918d616c5321ad374ae6cb5ea89c9e04bf3e58
2024-07-31 10:19:44 +00:00

26 lines
598 B
Nix

{
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 = [ ];
};
}