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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
{
lib,
stdenv,
buildPythonPackage,
fetchFromGitHub,
# build-system
setuptools,
# dependencies
debtcollector,
oslo-config,
oslo-context,
oslo-serialization,
oslo-utils,
pbr,
python-dateutil,
pyinotify,
# tests
eventlet,
oslotest,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "oslo-log";
version = "8.0.0";
pyproject = true;
src = fetchFromGitHub {
owner = "openstack";
repo = "oslo.log";
tag = version;
hash = "sha256-XCQc0ByjnXU4/ArgJ6sGgm/EO2DevDdBgma85pjhdSc=";
};
# Manually set version because prb wants to get it from the git upstream repository (and we are
# installing from tarball instead)
PBR_VERSION = version;
build-system = [ setuptools ];
dependencies = [
debtcollector
oslo-config
oslo-context
oslo-serialization
oslo-utils
pbr
python-dateutil
]
++ lib.optionals stdenv.hostPlatform.isLinux [ pyinotify ];
nativeCheckInputs = [
eventlet
oslotest
pytestCheckHook
];
disabledTests = [
# not compatible with sandbox
"test_logging_handle_error"
# Incompatible Exception Representation, displaying natively
"test_rate_limit"
"test_rate_limit_except_level"
];
pythonImportsCheck = [ "oslo_log" ];
__darwinAllowLocalNetworking = true;
meta = {
description = "oslo.log library";
mainProgram = "convert-json";
homepage = "https://github.com/openstack/oslo.log";
license = lib.licenses.asl20;
teams = [ lib.teams.openstack ];
};
}
|