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
49 lines
1.0 KiB
Nix
49 lines
1.0 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
setuptools,
|
|
llm,
|
|
llm-github-copilot,
|
|
writableTmpDirAsHomeHook,
|
|
pytestCheckHook,
|
|
pytest-vcr,
|
|
pytest-asyncio,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "llm-github-copilot";
|
|
version = "0.3.1";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jmdaly";
|
|
repo = "llm-github-copilot";
|
|
tag = version;
|
|
hash = "sha256-BUVpt1Vv0+kxbTYHDdiYy3+ySJKWJ9b+dYexV7YS+NI=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies = [ llm ];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
writableTmpDirAsHomeHook
|
|
pytest-vcr
|
|
pytest-asyncio
|
|
];
|
|
|
|
pythonImportsCheck = [ "llm_github_copilot" ];
|
|
|
|
passthru.tests = llm.mkPluginTest llm-github-copilot;
|
|
|
|
meta = {
|
|
description = "LLM plugin providing access to GitHub Copilot";
|
|
homepage = "https://github.com/jmdaly/llm-github-copilot";
|
|
changelog = "https://github.com/jmdaly/llm-github-copilot/releases/tag/${src.tag}";
|
|
license = lib.licenses.asl20;
|
|
maintainers = with lib.maintainers; [ afh ];
|
|
};
|
|
}
|