oterm: 0.2.8 -> 0.2.9

Changelog: https://github.com/ggozad/oterm/releases/tag/0.2.9
This commit is contained in:
Fabian Affolter 2024-06-16 09:41:07 +02:00
parent 475e3c538c
commit 317340ce68

View File

@ -6,14 +6,14 @@
python3Packages.buildPythonApplication rec {
pname = "oterm";
version = "0.2.8";
version = "0.2.9";
pyproject = true;
src = fetchFromGitHub {
owner = "ggozad";
repo = "oterm";
rev = "refs/tags/${version}";
hash = "sha256-6UFNsEc6bYBrBYfCbeiDfemueeRMEXHGCT8junZVFtk=";
hash = "sha256-UOZxktgpuTxkE1+DVnd5T1Fye+2SS2hUDmWtCaGEol0=";
};
pythonRelaxDeps = [
@ -22,6 +22,7 @@ python3Packages.buildPythonApplication rec {
"ollama"
"packaging"
"pillow"
"textual"
"typer"
];
@ -29,7 +30,7 @@ python3Packages.buildPythonApplication rec {
nativeBuildInputs = with python3Packages; [ pythonRelaxDepsHook ];
propagatedBuildInputs = with python3Packages; [
dependencies = with python3Packages; [
aiohttp
aiosql
aiosqlite
@ -54,7 +55,7 @@ python3Packages.buildPythonApplication rec {
homepage = "https://github.com/ggozad/oterm";
changelog = "https://github.com/ggozad/oterm/releases/tag/${version}";
license = lib.licenses.mit;
mainProgram = "oterm";
maintainers = with lib.maintainers; [ suhr ];
mainProgram = "oterm";
};
}