nixpkgs/pkgs/development/python-modules/opentelemetry-instrumentation-wsgi/default.nix
Jan Malakhovski 494522a2a4
treewide: noop: refer to src.name or similar in sourceRoot where appropriate, part 4: leftovers (#248528)
This continues where eaafc0f7eabfcc7dfea4387d98dcb9881e12755e.
2023-08-11 21:39:00 +02:00

45 lines
1.1 KiB
Nix

{ lib
, buildPythonPackage
, pythonOlder
, hatchling
, opentelemetry-api
, opentelemetry-instrumentation
, opentelemetry-semantic-conventions
, opentelemetry-test-utils
, opentelemetry-util-http
, pytestCheckHook
}:
buildPythonPackage {
inherit (opentelemetry-instrumentation) version src;
pname = "opentelemetry-instrumentation-wsgi";
disabled = pythonOlder "3.7";
sourceRoot = "${opentelemetry-instrumentation.src.name}/instrumentation/opentelemetry-instrumentation-wsgi";
format = "pyproject";
nativeBuildInputs = [
hatchling
];
propagatedBuildInputs = [
opentelemetry-instrumentation
opentelemetry-api
opentelemetry-semantic-conventions
opentelemetry-util-http
];
nativeCheckInputs = [
opentelemetry-test-utils
pytestCheckHook
];
pythonImportsCheck = [ "opentelemetry.instrumentation.wsgi" ];
meta = opentelemetry-instrumentation.meta // {
homepage = "https://github.com/open-telemetry/opentelemetry-python-contrib/blob/main/instrumentation/opentelemetry-instrumentation-wsgi";
description = "WSGI Middleware for OpenTelemetry";
};
}