nixpkgs/pkgs/development/tools/eliot-tree/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

40 lines
804 B
Nix
Raw Normal View History

{ lib, python3Packages, fetchPypi }:
python3Packages.buildPythonApplication rec {
pname = "eliot-tree";
2024-01-24 00:49:28 +00:00
version = "21.0.0";
src = fetchPypi {
inherit pname version;
2024-01-24 00:49:28 +00:00
sha256 = "sha256-hTl+r+QJPPQ7ss73lty3Wm7DLy2SKGmmgIuJx38ilO8=";
};
nativeCheckInputs = with python3Packages; [
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
'';
meta = with lib; {
homepage = "https://github.com/jonathanj/eliottree";
description = "Render Eliot logs as an ASCII tree";
mainProgram = "eliot-tree";
license = licenses.mit;
maintainers = [ maintainers.dpausp ];
};
}