Skip to content

Commit

Permalink
oterm: 0.1.18 -> 0.1.21
Browse files Browse the repository at this point in the history
  • Loading branch information
natsukium committed Jan 25, 2024
1 parent e9780ce commit 3528c59
Showing 1 changed file with 18 additions and 3 deletions.
21 changes: 18 additions & 3 deletions pkgs/by-name/ot/oterm/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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;
Expand Down

0 comments on commit 3528c59

Please sign in to comment.