2023-07-15 17:15:38 +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";
|
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-02-07 01:22:34 +00:00
|
|
|
sha256 = "sha256-hTl+r+QJPPQ7ss73lty3Wm7DLy2SKGmmgIuJx38ilO8=";
|
2020-08-20 17:08:02 +00:00
|
|
|
};
|
|
|
|
|
2023-02-02 18:25:31 +00:00
|
|
|
nativeCheckInputs = with python3Packages; [
|
2020-08-20 17:08:02 +00:00
|
|
|
testtools
|
|
|
|
pytest
|
|
|
|
];
|
|
|
|
|
|
|
|
propagatedBuildInputs = with python3Packages; [
|
|
|
|
colored
|
|
|
|
eliot
|
|
|
|
iso8601
|
|
|
|
jmespath
|
|
|
|
setuptools
|
|
|
|
toolz
|
|
|
|
];
|
|
|
|
|
|
|
|
# Tests run eliot-tree in out/bin.
|
|
|
|
checkPhase = ''
|
|
|
|
export PATH=$out/bin:$PATH
|
|
|
|
pytest
|
|
|
|
'';
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-08-20 17:08:02 +00:00
|
|
|
homepage = "https://github.com/jonathanj/eliottree";
|
|
|
|
description = "Render Eliot logs as an ASCII tree";
|
2024-04-21 15:54:59 +00:00
|
|
|
mainProgram = "eliot-tree";
|
2020-08-20 17:08:02 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = [ maintainers.dpausp ];
|
|
|
|
};
|
|
|
|
}
|