Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
52 lines
1.1 KiB
Nix
52 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
python3Packages,
|
|
fetchPypi,
|
|
addBinToPathHook,
|
|
}:
|
|
|
|
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; [
|
|
addBinToPathHook
|
|
pytestCheckHook
|
|
testtools
|
|
];
|
|
|
|
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 ];
|
|
};
|
|
}
|