Merge pull request #299134 from drupol/oterm/bump/0-2-4

oterm: 0.1.22 -> 0.2.4
This commit is contained in:
Pol Dellaiera 2024-03-26 11:41:16 +01:00 committed by GitHub
commit 560066b6e0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 9 additions and 6 deletions

View File

@ -5,22 +5,25 @@
python3Packages.buildPythonApplication rec {
pname = "oterm";
version = "0.1.22";
version = "0.2.4";
pyproject = true;
src = fetchFromGitHub {
owner = "ggozad";
repo = "oterm";
rev = "refs/tags/${version}";
hash = "sha256-hRbPlRuwM3NspTNd3mPhVxPJl8zA9qyFwDGNKH3Slag=";
hash = "sha256-p0ns+8qmcyX4gcg0CfYdDMn1Ie0atVBuQbVQoDRQ9+c=";
};
pythonRelaxDeps = [
"aiosqlite"
"pillow"
"httpx"
"packaging"
];
propagatedBuildInputs = with python3Packages; [
ollama
textual
typer
python-dotenv
@ -46,12 +49,12 @@ python3Packages.buildPythonApplication rec {
# Tests require a HTTP connection to ollama
doCheck = false;
meta = with lib; {
meta = {
changelog = "https://github.com/ggozad/oterm/releases/tag/${version}";
description = "A text-based terminal client for Ollama";
homepage = "https://github.com/ggozad/oterm";
changelog = "https://github.com/ggozad/oterm/releases/tag/${version}";
license = licenses.mit;
maintainers = with maintainers; [ suhr ];
license = lib.licenses.mit;
mainProgram = "oterm";
maintainers = with lib.maintainers; [ suhr ];
};
}