blob: 7810f800a59323cfd8ee4fa36806d38d63d53fc8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
{
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 ];
};
}
|