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 = {