fix: Allow to run via nix run
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user