python312Packages.typer: fix darwin build

checks require `ps` for darwin so add procps to nativeCheckInputs
This commit is contained in:
Reno Dakota 2024-10-23 00:16:27 +00:00
parent 5a11b86f67
commit f0697b9ba3
No known key found for this signature in database

View File

@ -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 = ''