Diff: https://github.com/simonw/llm-openai-plugin/compare/0.6...0.7 Changelog: https://github.com/simonw/llm-openai-plugin/releases/tag/0.7
59 lines
1.1 KiB
Nix
59 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
setuptools,
|
|
llm,
|
|
llm-openai-plugin,
|
|
openai,
|
|
pytestCheckHook,
|
|
pytest-asyncio,
|
|
pytest-recording,
|
|
syrupy,
|
|
cogapp,
|
|
writableTmpDirAsHomeHook,
|
|
}:
|
|
buildPythonPackage rec {
|
|
pname = "llm-openai-plugin";
|
|
version = "0.7";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "simonw";
|
|
repo = "llm-openai-plugin";
|
|
tag = version;
|
|
hash = "sha256-f/0QvMi2ZF14GtyDIOc9TkHLfbSjjNMe+Wy+60jKO7E=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies = [
|
|
llm
|
|
openai
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
pytest-asyncio
|
|
pytest-recording
|
|
syrupy
|
|
cogapp
|
|
writableTmpDirAsHomeHook
|
|
];
|
|
|
|
pythonImportsCheck = [ "llm_openai" ];
|
|
|
|
passthru.tests = llm.mkPluginTest llm-openai-plugin;
|
|
|
|
meta = {
|
|
description = "OpenAI plugin for LLM";
|
|
homepage = "https://github.com/simonw/llm-openai-plugin";
|
|
changelog = "https://github.com/simonw/llm-openai-plugin/releases/tag/${src.tag}";
|
|
license = lib.licenses.asl20;
|
|
maintainers = with lib.maintainers; [
|
|
josh
|
|
philiptaron
|
|
];
|
|
};
|
|
}
|