Unverified Commit e4cd4192 authored by Soham S Gumaste's avatar Soham S Gumaste
Browse files

shell-gpt: Add missing dependencies for functions feature.

parent aca27064
Loading
Loading
Loading
Loading
+7 −1
Original line number Diff line number Diff line
@@ -22,11 +22,14 @@ python3.pkgs.buildPythonApplication rec {
    "distro"
    "typer"
    "instructor"
    "jinja2"
  ];

  build-system = with python3.pkgs; [ hatchling ];

  propagatedBuildInputs = with python3.pkgs; [
    jinja2
    requests
    click
    distro
    instructor
@@ -43,7 +46,10 @@ python3.pkgs.buildPythonApplication rec {
    homepage = "https://github.com/TheR1D/shell_gpt";
    changelog = "https://github.com/TheR1D/shell_gpt/releases/tag/${version}";
    license = licenses.mit;
    maintainers = with maintainers; [ mglolenstine ];
    maintainers = with maintainers; [
      mglolenstine
      SohamG
    ];
    mainProgram = "sgpt";
  };
}