depot/pkgs/development/tools/eliot-tree/default.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

54 lines
1.2 KiB
Nix

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