started python side

This commit is contained in:
John Lancaster
2025-09-12 18:39:17 -05:00
parent 09582a2efb
commit 470b68cc1a
9 changed files with 173 additions and 3 deletions

View File

@@ -10,12 +10,23 @@
# rustc rustfmt cargo
trunk cargo-generate
# LLVM tools for WebAssembly compilation
llvm
lld
# llvm
# lld
];
# https://devenv.sh/languages/
languages.rust.enable = true;
languages.python = {
enable = true;
package = pkgs.python312;
uv = {
enable = true;
sync = {
enable = true;
allExtras = true;
};
};
};
# https://devenv.sh/processes/
# processes.cargo-watch.exec = "cargo-watch";
@@ -42,7 +53,9 @@
# https://devenv.sh/tests/
enterTest = ''
echo "Running tests"
git --version | grep --color=auto "${pkgs.git.version}"
git --version
python --version
rustc --version
'';
# https://devenv.sh/git-hooks/