shell_gpt: 0.7.3 -> 0.8.8

This commit is contained in:
MGlolenstine
2023-04-12 15:04:28 -04:00
committed by Yt
parent 203c1604d0
commit ef47b9f8b6
+5 -2
View File
@@ -1,14 +1,15 @@
{ lib
, python3
, nix-update-script
}:
python3.pkgs.buildPythonApplication rec {
pname = "shell_gpt";
version = "0.7.3";
version = "0.8.8";
src = python3.pkgs.fetchPypi {
inherit pname version;
sha256 = "sha256-lS8zLtsh8Uz782KJwHqifEQnWQswbCXRVIfXWAmWtvI=";
sha256 = "sha256-KuaSAiXlqWRhFtX4C6vibbUiq43L83pZX+yM9L7Ej68=";
};
nativeBuildInputs = with python3.pkgs; [
@@ -27,6 +28,8 @@ python3.pkgs.buildPythonApplication rec {
pythonRelaxDeps = [ "requests" "rich" "distro" "typer" ];
passthru.updateScript = nix-update-script { };
doCheck = false;
meta = with lib; {