gorilla-cli: init at 0.0.9

This commit is contained in:
happysalada 2023-07-23 12:37:09 +09:00 committed by Yt
parent 33916d2336
commit 6191e68413
2 changed files with 40 additions and 0 deletions

View file

@ -0,0 +1,38 @@
{ lib
, python3
, fetchFromGitHub
, nix-update-script
}:
python3.pkgs.buildPythonApplication rec {
pname = "gorilla-cli";
version = "0.0.9";
format = "setuptools";
src = fetchFromGitHub {
owner = "gorilla-llm";
repo = "gorilla-cli";
rev = version;
hash = "sha256-3h3QtBDKswTDL7zNM2C4VWiGCqknm/bxhP9sw4ieIcQ=";
};
disabled = python3.pythonOlder "3.6";
propagatedBuildInputs = with python3.pkgs; [
requests
halo
prompt-toolkit
];
passthru.updateScript = nix-update-script { };
# no tests
doCheck = false;
meta = with lib; {
description = "LLMs for your CLI";
homepage = "https://github.com/gorilla-llm/gorilla-cli";
license = licenses.asl20;
maintainers = with maintainers; [ happysalada ];
};
}

View file

@ -5356,6 +5356,8 @@ with pkgs;
gorilla-bin = callPackage ../tools/security/gorilla-bin { };
gorilla-cli = callPackage ../tools/llm/gorilla-cli { };
godu = callPackage ../tools/misc/godu { };
goss = callPackage ../tools/misc/goss { };