python3Packages.pipenv-poetry-migrate: fix test

Signed-off-by: Florian Brandes <florian.brandes@posteo.de>
This commit is contained in:
2025-11-06 07:57:44 +01:00
parent 6a8176d2a1
commit 8f8fce52d4
@@ -18,16 +18,16 @@ python3Packages.buildPythonApplication rec {
build-system = [ python3Packages.poetry-core ];
pythonRelaxDeps = [
"typer"
];
dependencies = with python3Packages; [
setuptools # for pkg_resources
tomlkit
typer
];
# typer for Click >= 8.2 removed "mix_stderr", upstream pins to 8.1.8
# https://typer.tiangolo.com/release-notes/#0160
disabledTestPaths = [ "tests/test_cli.py" ];
nativeCheckInputs = [ python3Packages.pytestCheckHook ];
meta = {