shell_gpt: 1.0.1 -> 1.4.0

This commit is contained in:
Jörg Thalheim 2024-03-15 08:20:26 +00:00
parent 5ed4f2a3cb
commit 4dbb8d8bc2

View file

@ -6,12 +6,12 @@
python3.pkgs.buildPythonApplication rec { python3.pkgs.buildPythonApplication rec {
pname = "shell_gpt"; pname = "shell_gpt";
version = "1.0.1"; version = "1.4.0";
format = "pyproject"; pyproject = true;
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "sha256-/rBD2n5IZzSeC5dmVQRZY8UrzUOkAEVHp8KwIfV1hec="; sha256 = "sha256-r/xQRqnLJhGZORjYUaYWKjqY4fQCW4WKkE+n8k0VMbA=";
}; };
nativeBuildInputs = with python3.pkgs; [ nativeBuildInputs = with python3.pkgs; [
@ -27,6 +27,8 @@ python3.pkgs.buildPythonApplication rec {
typer typer
requests requests
hatchling hatchling
openai
instructor
]; ];
pythonRelaxDeps = [ "requests" "rich" "distro" "typer" ]; pythonRelaxDeps = [ "requests" "rich" "distro" "typer" ];