mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-10 19:55:41 +03:00
56 lines
1.1 KiB
Nix
56 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
setuptools,
|
|
llm,
|
|
llm-openrouter,
|
|
httpx,
|
|
openai,
|
|
pytestCheckHook,
|
|
inline-snapshot,
|
|
pytest-recording,
|
|
writableTmpDirAsHomeHook,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "llm-openrouter";
|
|
version = "0.4.1";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "simonw";
|
|
repo = "llm-openrouter";
|
|
tag = version;
|
|
hash = "sha256-ojBkyXqEaqTcOv7mzTWL5Ihhb50zeVzeQZNA6DySuVg=";
|
|
};
|
|
|
|
build-system = [
|
|
setuptools
|
|
];
|
|
|
|
dependencies = [
|
|
httpx
|
|
llm
|
|
openai
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
inline-snapshot
|
|
pytest-recording
|
|
writableTmpDirAsHomeHook
|
|
];
|
|
|
|
pythonImportsCheck = [ "llm_openrouter" ];
|
|
|
|
passthru.tests = llm.mkPluginTest llm-openrouter;
|
|
|
|
meta = {
|
|
description = "LLM plugin for models hosted by OpenRouter";
|
|
homepage = "https://github.com/simonw/llm-openrouter";
|
|
changelog = "https://github.com/simonw/llm-openrouter/releases/tag/${version}/CHANGELOG.md";
|
|
license = lib.licenses.asl20;
|
|
maintainers = with lib.maintainers; [ philiptaron ];
|
|
};
|
|
}
|