shell-gpt: 1.4.5 -> 1.5.1 (#517702)

This commit is contained in:
Sandro
2026-05-11 23:47:55 +00:00
committed by GitHub
+5 -14
View File
@@ -6,44 +6,35 @@
python3.pkgs.buildPythonApplication (finalAttrs: {
pname = "shell-gpt";
version = "1.4.5";
version = "1.5.1";
pyproject = true;
src = fetchFromGitHub {
owner = "TheR1D";
repo = "shell_gpt";
tag = finalAttrs.version;
hash = "sha256-e0zKlbt508psiV1ryuE/JV0rWM/XZDhMChqReGHefig=";
hash = "sha256-ZfccaWu/MEY+U+Q8W5N/jcpx7Mv9gRytxjX5qGkMWWk=";
};
pythonRelaxDeps = [
"requests"
"rich"
"distro"
"typer"
"instructor"
"jinja2"
"openai"
"prompt-toolkit"
];
build-system = with python3.pkgs; [ hatchling ];
propagatedBuildInputs = with python3.pkgs; [
jinja2
requests
click
dependencies = with python3.pkgs; [
distro
instructor
litellm
openai
prompt-toolkit
rich
typer
];
buildInputs = with python3.pkgs; [
litellm
];
# Tests want to read the OpenAI API key from stdin
doCheck = false;