natsukium 2024-01-25 22:30:42 +09:00
parent e9780ce6c6
commit 3528c59926
No known key found for this signature in database
GPG Key ID: 9EA45A31DB994C53

@ -5,14 +5,19 @@
python3Packages.buildPythonApplication rec {
pname = "oterm";
version = "0.1.18";
version = "0.1.21";
pyproject = true;
src = fetchFromGitHub {
owner = "ggozad";
repo = "oterm";
rev = "refs/tags/${version}";
hash = "sha256-hog0oEiZMxM3lM3xFZ+c15OTOwGXZ97FmG4PpyA94Ys=";
hash = "sha256-S6v7VDIGPu6UDbDe0H3LWF6IN0Z6ENmiCDxz+GuCibI=";
};
pythonRelaxDeps = [
"pillow"
];
propagatedBuildInputs = with python3Packages; [
textual
typer
@ -23,8 +28,18 @@ python3Packages.buildPythonApplication rec {
pyperclip
packaging
rich-pixels
pillow
aiohttp
];
nativeBuildInputs = with python3Packages; [
poetry-core
pythonRelaxDepsHook
];
pythonImportsCheck = [
"oterm"
];
nativeBuildInputs = with python3Packages; [ poetry-core ];
# Tests require a HTTP connection to ollama
doCheck = false;