diff --git a/pkgs/by-name/sh/shell-gpt/package.nix b/pkgs/by-name/sh/shell-gpt/package.nix index 1c5ee5f42467..d52ce4b90b15 100644 --- a/pkgs/by-name/sh/shell-gpt/package.nix +++ b/pkgs/by-name/sh/shell-gpt/package.nix @@ -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;