Finish poetry migration

This commit is contained in:
2026-01-29 12:56:28 +01:00
parent 0bc48d01a7
commit 715acd6244
3 changed files with 32 additions and 3 deletions
+3 -3
View File
@@ -6,13 +6,13 @@ pkgs.mkShell {
buildInputs = with pkgs; [
nodejs
python3
poetry
uv
ruff
];
shellHook = ''
python -m venv .venv
uv venv --clear
. .venv/bin/activate
poetry install
uv sync
'';
}