From 349bee348ece8acf571603f6cd3d0432cbd3bcbb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Tue, 7 Oct 2025 06:00:16 -0700 Subject: [PATCH] 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 --- pkgs/development/python-modules/typer/default.nix | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/pkgs/development/python-modules/typer/default.nix b/pkgs/development/python-modules/typer/default.nix index 7b8d2a1b2289..c8ee4e01a9ef 100644 --- a/pkgs/development/python-modules/typer/default.nix +++ b/pkgs/development/python-modules/typer/default.nix @@ -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 = {