mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-09 06:23:36 +00:00
61 lines
1.2 KiB
Nix
61 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
python3Packages,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "oterm";
|
|
version = "0.2.8";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ggozad";
|
|
repo = "oterm";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-6UFNsEc6bYBrBYfCbeiDfemueeRMEXHGCT8junZVFtk=";
|
|
};
|
|
|
|
pythonRelaxDeps = [
|
|
"aiosqlite"
|
|
"httpx"
|
|
"ollama"
|
|
"packaging"
|
|
"pillow"
|
|
"typer"
|
|
];
|
|
|
|
build-system = with python3Packages; [ poetry-core ];
|
|
|
|
nativeBuildInputs = with python3Packages; [ pythonRelaxDepsHook ];
|
|
|
|
propagatedBuildInputs = with python3Packages; [
|
|
aiohttp
|
|
aiosql
|
|
aiosqlite
|
|
httpx
|
|
ollama
|
|
packaging
|
|
pillow
|
|
pyperclip
|
|
python-dotenv
|
|
rich-pixels
|
|
textual
|
|
typer
|
|
];
|
|
|
|
pythonImportsCheck = [ "oterm" ];
|
|
|
|
# Tests require a HTTP connection to ollama
|
|
doCheck = false;
|
|
|
|
meta = {
|
|
description = "A text-based terminal client for Ollama";
|
|
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 ];
|
|
};
|
|
}
|