diff --git a/pkgs/development/python-modules/typer/default.nix b/pkgs/development/python-modules/typer/default.nix index 41835f9cf04d8..fc93e4fe68443 100644 --- a/pkgs/development/python-modules/typer/default.nix +++ b/pkgs/development/python-modules/typer/default.nix @@ -1,5 +1,4 @@ { lib -, stdenv , buildPythonPackage , fetchpatch , fetchPypi @@ -44,8 +43,9 @@ buildPythonPackage rec { preCheck = '' export HOME=$(mktemp -d); ''; - disabledTests = lib.optionals stdenv.isDarwin [ + disabledTests = [ # likely related to https://github.com/sarugaku/shellingham/issues/35 + # update: these seem to cause problems on all platforms now "test_show_completion" "test_install_completion" ]; @@ -53,7 +53,6 @@ buildPythonPackage rec { 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;