2024-07-27 06:49:29 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
python3Packages,
|
|
|
|
fetchPypi,
|
|
|
|
}:
|
2020-08-20 17:08:02 +00:00
|
|
|
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
|
|
pname = "eliot-tree";
|
2024-02-07 01:22:34 +00:00
|
|
|
version = "21.0.0";
|
2024-07-27 06:49:29 +00:00
|
|
|
pyproject = true;
|
2020-08-20 17:08:02 +00:00
|
|
|
|
2023-07-15 17:15:38 +00:00
|
|
|
src = fetchPypi {
|
2020-08-20 17:08:02 +00:00
|
|
|
inherit pname version;
|
2024-07-27 06:49:29 +00:00
|
|
|
hash = "sha256-hTl+r+QJPPQ7ss73lty3Wm7DLy2SKGmmgIuJx38ilO8=";
|
2020-08-20 17:08:02 +00:00
|
|
|
};
|
|
|
|
|
2024-07-27 06:49:29 +00:00
|
|
|
# Patch Python 3.12 incompatibilities in versioneer.py.
|
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace versioneer.py \
|
|
|
|
--replace-fail SafeConfigParser ConfigParser \
|
|
|
|
--replace-fail readfp read_file
|
|
|
|
'';
|
2020-08-20 17:08:02 +00:00
|
|
|
|
2024-07-27 06:49:29 +00:00
|
|
|
build-system = with python3Packages; [ setuptools ];
|
|
|
|
|
|
|
|
dependencies = with python3Packages; [
|
2020-08-20 17:08:02 +00:00
|
|
|
colored
|
|
|
|
eliot
|
|
|
|
iso8601
|
|
|
|
jmespath
|
|
|
|
toolz
|
|
|
|
];
|
|
|
|
|
2024-07-27 06:49:29 +00:00
|
|
|
nativeCheckInputs = with python3Packages; [
|
|
|
|
pytestCheckHook
|
|
|
|
testtools
|
|
|
|
];
|
|
|
|
|
2020-08-20 17:08:02 +00:00
|
|
|
# Tests run eliot-tree in out/bin.
|
2024-07-27 06:49:29 +00:00
|
|
|
preCheck = ''
|
2020-08-20 17:08:02 +00:00
|
|
|
export PATH=$out/bin:$PATH
|
|
|
|
'';
|
|
|
|
|
2024-07-27 06:49:29 +00:00
|
|
|
pythonImportsCheck = [ "eliottree" ];
|
|
|
|
|
|
|
|
meta = {
|
2020-08-20 17:08:02 +00:00
|
|
|
homepage = "https://github.com/jonathanj/eliottree";
|
2024-07-27 06:49:29 +00:00
|
|
|
changelog = "https://github.com/jonathanj/eliottree/blob/${version}/NEWS.rst";
|
2020-08-20 17:08:02 +00:00
|
|
|
description = "Render Eliot logs as an ASCII tree";
|
2024-04-21 15:54:59 +00:00
|
|
|
mainProgram = "eliot-tree";
|
2024-07-27 06:49:29 +00:00
|
|
|
license = lib.licenses.mit;
|
|
|
|
maintainers = [ lib.maintainers.dpausp ];
|
2020-08-20 17:08:02 +00:00
|
|
|
};
|
|
|
|
}
|