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:
parent
b9fee1ce63
commit
4a67b03684
1 changed files with 2 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue