From 4a67b03684868e56d329c885fa48b65a41c73c19 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Wed, 3 Aug 2022 20:47:24 +0200 Subject: [PATCH] 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. --- pkgs/development/python-modules/typer/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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;