2023-05-25 12:52:27 +00:00
|
|
|
{ lib, python3Packages, fetchPypi }:
|
2020-05-31 20:52:53 +00:00
|
|
|
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
|
|
pname = "eliot-tree";
|
2024-01-24 00:49:28 +00:00
|
|
|
version = "21.0.0";
|
2020-05-31 20:52:53 +00:00
|
|
|
|
2023-05-25 12:52:27 +00:00
|
|
|
src = fetchPypi {
|
2020-05-31 20:52:53 +00:00
|
|
|
inherit pname version;
|
2024-01-24 00:49:28 +00:00
|
|
|
sha256 = "sha256-hTl+r+QJPPQ7ss73lty3Wm7DLy2SKGmmgIuJx38ilO8=";
|
2020-05-31 20:52:53 +00:00
|
|
|
};
|
|
|
|
|
2023-01-21 12:00:00 +00:00
|
|
|
nativeCheckInputs = with python3Packages; [
|
2020-05-31 20:52:53 +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-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-05-31 20:52:53 +00:00
|
|
|
homepage = "https://github.com/jonathanj/eliottree";
|
|
|
|
description = "Render Eliot logs as an ASCII tree";
|
2024-03-19 02:14:51 +00:00
|
|
|
mainProgram = "eliot-tree";
|
2020-05-31 20:52:53 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = [ maintainers.dpausp ];
|
|
|
|
};
|
|
|
|
}
|