Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
58 lines
1.0 KiB
Nix
58 lines
1.0 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
|
|
# build-system
|
|
setuptools,
|
|
|
|
# dependencies
|
|
llm,
|
|
openai,
|
|
|
|
# tests
|
|
pytestCheckHook,
|
|
writableTmpDirAsHomeHook,
|
|
python-dotenv,
|
|
pillow,
|
|
llm-perplexity,
|
|
}:
|
|
buildPythonPackage rec {
|
|
pname = "llm-perplexity";
|
|
version = "2025.6.0";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "hex";
|
|
repo = "llm-perplexity";
|
|
tag = version;
|
|
hash = "sha256-LTf2TY5bjSb7ARXrhWj1ctGuMpnq2Kl/kv/hrgX/m/M=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies = [
|
|
llm
|
|
openai
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
writableTmpDirAsHomeHook
|
|
python-dotenv
|
|
pillow
|
|
];
|
|
|
|
pythonImportsCheck = [ "llm_perplexity" ];
|
|
|
|
passthru.tests = llm.mkPluginTest llm-perplexity;
|
|
|
|
meta = {
|
|
description = "LLM access to pplx-api";
|
|
homepage = "https://github.com/hex/llm-perplexity";
|
|
changelog = "https://github.com/hex/llm-perplexity/releases/tag/${version}";
|
|
license = lib.licenses.asl20;
|
|
maintainers = with lib.maintainers; [ jed-richards ];
|
|
};
|
|
}
|