mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-12 04:35:41 +03:00
23 lines
326 B
Nix
23 lines
326 B
Nix
![]() |
{
|
||
|
runCommand,
|
||
|
python,
|
||
|
yq,
|
||
|
}:
|
||
|
let
|
||
|
venv = python.withPackages (ps: [
|
||
|
ps.llm
|
||
|
ps.llm-openai-plugin
|
||
|
]);
|
||
|
in
|
||
|
runCommand "llm-openai-plugin-test-llm-plugin"
|
||
|
{
|
||
|
nativeBuildInputs = [
|
||
|
venv
|
||
|
yq
|
||
|
];
|
||
|
}
|
||
|
''
|
||
|
llm plugins | yq --exit-status 'any(.name == "llm-openai-plugin")'
|
||
|
touch "$out"
|
||
|
''
|