fix: Allow to run via nix run

This commit is contained in:
2026-04-20 09:11:20 +02:00
parent dd30452b6b
commit 43536113ad
5 changed files with 22 additions and 19 deletions
+9 -3
View File
@@ -9,7 +9,7 @@
# TODO: We can just get this from nixpkgs when merged: https://github.com/NixOS/nixpkgs/pull/506300
python3Packages.buildPythonApplication (finalAttrs: {
pname = "serena";
version = "1.1.1";
version = "1.1.2";
pyproject = true;
disabled = python3Packages.pythonOlder "3.11";
@@ -41,12 +41,18 @@ python3Packages.buildPythonApplication (finalAttrs: {
pythonRelaxDeps = true;
makeWrapperArgs = [
"--prefix PATH : ${lib.makeBinPath [ pyright fortls ]}"
"--prefix PATH : ${
lib.makeBinPath [
pyright
fortls
]
}"
];
dependencies = [
oraios-pywebview
] ++ (with python3Packages; [
]
++ (with python3Packages; [
anthropic
docstring-parser
beautifulsoup4