diff --git a/pkgs/development/python-modules/typer/default.nix b/pkgs/development/python-modules/typer/default.nix index 460b9bdda063..2019a956ce54 100644 --- a/pkgs/development/python-modules/typer/default.nix +++ b/pkgs/development/python-modules/typer/default.nix @@ -50,12 +50,13 @@ buildPythonPackage rec { # likely related to https://github.com/sarugaku/shellingham/issues/35 "test_show_completion" "test_install_completion" + ] ++ lib.optionals (stdenv.isLinux && stdenv.isAarch64) [ + "test_install_completion" ]; pythonImportsCheck = [ "typer" ]; meta = with lib; { - broken = (stdenv.isLinux && stdenv.isAarch64); description = "Python library for building CLI applications"; homepage = "https://typer.tiangolo.com/"; license = licenses.mit;