python3Packages.typer: reenable by disabling test on aarch64-linux

This test also fails on darwin, so marking the package as broken on
aarch64-linux was a bit overzealous.
This commit is contained in:
Martin Weinelt 2022-08-03 20:47:24 +02:00
parent b9fee1ce63
commit 4a67b03684
No known key found for this signature in database
GPG key ID: 87C1E9888F856759

View file

@ -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;