blob: e1bcc59c2e8e4ad741d09874ee464d4b80959900 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
{
buildPythonPackage,
pythonOlder,
hatchling,
opentelemetry-instrumentation,
opentelemetry-test-utils,
pytestCheckHook,
}:
buildPythonPackage {
inherit (opentelemetry-instrumentation) version src;
pname = "opentelemetry-util-http";
pyproject = true;
disabled = pythonOlder "3.8";
sourceRoot = "${opentelemetry-instrumentation.src.name}/util/opentelemetry-util-http";
build-system = [ hatchling ];
nativeCheckInputs = [
opentelemetry-instrumentation
opentelemetry-test-utils
pytestCheckHook
];
# https://github.com/open-telemetry/opentelemetry-python-contrib/issues/1940
disabledTests = [
"test_nonstandard_method"
"test_nonstandard_method_allowed"
];
pythonImportsCheck = [ "opentelemetry.util.http" ];
__darwinAllowLocalNetworking = true;
meta = opentelemetry-instrumentation.meta // {
homepage = "https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/util/opentelemetry-util-http";
description = "Web util for OpenTelemetry";
};
}
|