python3Packages.typer: 0.17.4 -> 0.19.2

Diff: https://github.com/fastapi/typer/compare/0.17.4...0.19.2

Changelog: https://github.com/tiangolo/typer/releases/tag/0.19.2
This commit is contained in:
Robert Schütz
2025-10-07 06:03:16 -07:00
parent dbef4cf7a0
commit 349bee348e
@@ -28,14 +28,14 @@
buildPythonPackage rec {
pname = package;
version = "0.17.4";
version = "0.19.2";
pyproject = true;
src = fetchFromGitHub {
owner = "fastapi";
repo = "typer";
tag = version;
hash = "sha256-gd4GgoRnQVVmwmW5DprmNRxgjFiRRa8HB6xO9U9wHI8=";
hash = "sha256-mMsOEI4FpLkLkpjxjnUdmKdWD65Zx3Z1+L+XsS79k44=";
};
env.TIANGOLO_BUILD_PACKAGE = package;
@@ -80,12 +80,6 @@ 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 = {