From f0697b9ba3a993f4f2e5d238c7a30c942318145b Mon Sep 17 00:00:00 2001 From: Reno Dakota <170618376+paparodeo@users.noreply.github.com> Date: Wed, 23 Oct 2024 00:16:27 +0000 Subject: [PATCH] python312Packages.typer: fix darwin build checks require `ps` for darwin so add procps to nativeCheckInputs --- pkgs/development/python-modules/typer/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/python-modules/typer/default.nix b/pkgs/development/python-modules/typer/default.nix index 18da08e71569..3c92fb408ecf 100644 --- a/pkgs/development/python-modules/typer/default.nix +++ b/pkgs/development/python-modules/typer/default.nix @@ -6,6 +6,7 @@ coverage, fetchPypi, pdm-backend, + procps, pytest-sugar, pytest-xdist, pytestCheckHook, @@ -48,6 +49,8 @@ buildPythonPackage rec { pytest-sugar pytest-xdist pytestCheckHook + ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ + procps ]; preCheck = ''