ae2dc6aea6
GitOrigin-RevId: 4c2fcb090b1f3e5b47eaa7bd33913b574a11e0a0
36 lines
942 B
Nix
36 lines
942 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
hatchling,
|
|
opentelemetry-api,
|
|
opentelemetry-instrumentation,
|
|
opentelemetry-test-utils,
|
|
pytestCheckHook,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
inherit (opentelemetry-instrumentation) version src;
|
|
pname = "opentelemetry-instrumentation-logging";
|
|
pyproject = true;
|
|
|
|
sourceRoot = "${opentelemetry-instrumentation.src.name}/instrumentation/opentelemetry-instrumentation-logging";
|
|
|
|
build-system = [ hatchling ];
|
|
|
|
dependencies = [
|
|
opentelemetry-api
|
|
opentelemetry-instrumentation
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
opentelemetry-test-utils
|
|
pytestCheckHook
|
|
];
|
|
|
|
pythonImportsCheck = [ "opentelemetry.instrumentation.logging" ];
|
|
|
|
meta = opentelemetry-instrumentation.meta // {
|
|
homepage = "https://github.com/open-telemetry/opentelemetry-python-contrib/blob/main/instrumentation/opentelemetry-instrumentation-logging";
|
|
description = "Logging instrumentation for OpenTelemetry";
|
|
};
|
|
}
|