ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
68 lines
1.2 KiB
Nix
68 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.0";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchPypi {
|
|
pname = "oslo.log";
|
|
inherit version;
|
|
hash = "sha256-TO3RZpx94o2OZrZ6X21sb+g5KFNfqHzWm/ZhG1n1Z+c=";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|