eliot-tree: make usable with Python 3.12

This commit is contained in:
Martin Joerg 2024-07-14 09:53:49 +00:00
parent 26595b1e41
commit d7047e2fbf

View File

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