simbaplusplus: add missing python to checkInputs

Required for checks, see 64be925af2/CMakeLists.txt (L124-L140)
This commit is contained in:
Grimmauld
2025-06-12 13:06:20 +02:00
parent bd9c4aee47
commit 316390d227

View File

@@ -5,6 +5,7 @@
cmake,
llvmPackages,
z3,
python3,
}:
stdenv.mkDerivation (finalAttrs: {
@@ -33,6 +34,10 @@ stdenv.mkDerivation (finalAttrs: {
z3
];
checkInputs = [
python3
];
doCheck = true;
meta = {