python3Packages.typer: disable failing tests on darwin

these all seem to stem from the shellingham package being unable to
detect the shell (even if we provide `ps` to it), likely related to
a known issue

+6
+6
pkgs/development/python-modules/typer/default.nix
··· 1 1 { lib 2 + , stdenv 2 3 , buildPythonPackage 3 4 , fetchPypi 4 5 , click ··· 42 43 preCheck = '' 43 44 export HOME=$(mktemp -d); 44 45 ''; 46 + disabledTests = lib.optionals stdenv.isDarwin [ 47 + # likely related to https://github.com/sarugaku/shellingham/issues/35 48 + "test_show_completion" 49 + "test_install_completion" 50 + ]; 45 51 46 52 pythonImportsCheck = [ "typer" ]; 47 53