587713944a
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
67 lines
1.2 KiB
Nix
67 lines
1.2 KiB
Nix
{ lib
|
|
, stdenv
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, eventlet
|
|
, oslo-config
|
|
, oslo-context
|
|
, oslo-serialization
|
|
, oslo-utils
|
|
, oslotest
|
|
, pbr
|
|
, pyinotify
|
|
, python-dateutil
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "oslo-log";
|
|
version = "5.5.1";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchPypi {
|
|
pname = "oslo.log";
|
|
inherit version;
|
|
hash = "sha256-SEFIUSxdsqizXIPNmX6ZU3Vf2L+oqvbuDMjHrrdCkhA=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
oslo-config
|
|
oslo-context
|
|
oslo-serialization
|
|
oslo-utils
|
|
pbr
|
|
python-dateutil
|
|
] ++ lib.optionals stdenv.isLinux [
|
|
pyinotify
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
eventlet
|
|
oslotest
|
|
pytestCheckHook
|
|
];
|
|
|
|
disabledTests = [
|
|
# not compatible with sandbox
|
|
"test_logging_handle_error"
|
|
# File which is used doesn't seem not to be present
|
|
"test_log_config_append_invalid"
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"oslo_log"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "oslo.log library";
|
|
mainProgram = "convert-json";
|
|
homepage = "https://github.com/openstack/oslo.log";
|
|
license = licenses.asl20;
|
|
maintainers = teams.openstack.members;
|
|
broken = stdenv.isDarwin;
|
|
};
|
|
}
|