Unverified Commit d2a41ddc authored by Aleksana's avatar Aleksana Committed by GitHub
Browse files

llm-github-copilot: init at 0.3.1 (#423311)

parents d19b74a8 9522316d
Loading
Loading
Loading
Loading
+48 −0
Original line number Diff line number Diff line
{
  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 ];
  };
}
+1 −0
Original line number Diff line number Diff line
@@ -75,6 +75,7 @@ let
      llm-gemini ? false,
      llm-gguf ? false,
      llm-git ? false,
      llm-github-copilot ? false,
      llm-grok ? false,
      llm-groq ? false,
      llm-hacker-news ? false,
+2 −0
Original line number Diff line number Diff line
@@ -8521,6 +8521,8 @@ self: super: with self; {
  llm-git = callPackage ../development/python-modules/llm-git { };
  llm-github-copilot = callPackage ../development/python-modules/llm-github-copilot { };
  llm-grok = callPackage ../development/python-modules/llm-grok { };
  llm-groq = callPackage ../development/python-modules/llm-groq { };