at 25.11-pre 296 B view raw
1{ 2 runCommand, 3 python, 4 yq, 5}: 6let 7 venv = python.withPackages (ps: [ 8 ps.llm 9 ps.llm-cmd 10 ]); 11in 12runCommand "llm-cmd-test-llm-plugin" 13 { 14 nativeBuildInputs = [ 15 venv 16 yq 17 ]; 18 } 19 '' 20 llm plugins | yq --exit-status 'any(.name == "llm-cmd")' 21 touch "$out" 22 ''