Unverified Commit 3264c61c authored by Peder Bergebakken Sundt's avatar Peder Bergebakken Sundt Committed by GitHub
Browse files

shell-gpt: Add missing dependencies for functions feature. (#400812)

parents 40182ab7 fdd95cd9
Loading
Loading
Loading
Loading
+4 −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,7 @@ 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; [ SohamG ];
    mainProgram = "sgpt";
  };
}