Robert Schütz
2025-08-09 18:57:43 +02:00
committed by Martin Weinelt
parent 2f9026647e
commit ec03afc6c4
@@ -25,14 +25,14 @@
buildPythonPackage rec {
pname = "typer";
version = "0.15.4";
version = "0.16.0";
pyproject = true;
src = fetchFromGitHub {
owner = "fastapi";
repo = "typer";
tag = version;
hash = "sha256-lZJKE8bxYxmDxAmnL7L/fL89gMe44voyHT20DUazd9E=";
hash = "sha256-WB9PIxagTHutfk3J+mNTVK8bC7TMDJquu3GLBQgaras=";
};
build-system = [ pdm-backend ];
@@ -73,6 +73,12 @@ buildPythonPackage rec {
"test_install_completion"
];
disabledTestPaths = [
# likely click 8.2 compat issue
"tests/test_tutorial/test_parameter_types/test_bool/test_tutorial002_an.py"
"tests/test_tutorial/test_parameter_types/test_bool/test_tutorial002.py"
];
pythonImportsCheck = [ "typer" ];
meta = {