f34ce41345
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
55 lines
1.4 KiB
Nix
55 lines
1.4 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
pythonOlder,
|
|
fetchFromGitHub,
|
|
hatchling,
|
|
opentelemetry-api,
|
|
opentelemetry-test-utils,
|
|
setuptools,
|
|
wrapt,
|
|
pytestCheckHook,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "opentelemetry-instrumentation";
|
|
version = "0.46b0";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
# to avoid breakage, every package in opentelemetry-python-contrib must inherit this version, src, and meta
|
|
src = fetchFromGitHub {
|
|
owner = "open-telemetry";
|
|
repo = "opentelemetry-python-contrib";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-BC/RJL4GgC3vGe4bC9mavPNpE+j8ZIkOKCbK4I4LuGQ=";
|
|
};
|
|
|
|
sourceRoot = "${src.name}/opentelemetry-instrumentation";
|
|
|
|
build-system = [ hatchling ];
|
|
|
|
dependencies = [
|
|
opentelemetry-api
|
|
setuptools
|
|
wrapt
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
opentelemetry-test-utils
|
|
pytestCheckHook
|
|
];
|
|
|
|
pythonImportsCheck = [ "opentelemetry.instrumentation" ];
|
|
|
|
passthru.updateScript = opentelemetry-api.updateScript;
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/opentelemetry-instrumentation";
|
|
description = "Instrumentation Tools & Auto Instrumentation for OpenTelemetry Python";
|
|
changelog = "https://github.com/open-telemetry/opentelemetry-python-contrib/releases/tag/${src.rev}";
|
|
license = licenses.asl20;
|
|
maintainers = teams.deshaw.members ++ [ maintainers.natsukium ];
|
|
};
|
|
}
|