File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ pkgs.mkShell {
2323
2424 unstable . python312Packages . fastecdsa
2525 unstable . python312Packages . greenlet
26+ unstable . python312Packages . libnacl
2627 ] ;
2728
2829 shellHook = ''
@@ -61,14 +62,14 @@ pkgs.mkShell {
6162
6263 # Create a virtual environment in the current directory if it doesn't exist
6364 if [ ! -d "venv" ]; then
64- python3 -m virtualenv venv
65+ python3.12 -m virtualenv venv
6566 fi
6667
6768 # Install the required Python packages
68- ./venv/bin/pip install -e .\[testing \]
69+ ./venv/bin/pip install -e .\[test \]
6970
7071 # PyO3 requires a nightly or dev version of Rust.
71- rustup default nightly
72+ # rustup default nightly
7273
7374 # If config.yml does not exist, create it with the port specified in this shell.
7475 [ -e config.yml ] || echo -e "postgres:\n port: $PG_PORT" > config.yml
You can’t perform that action at this time.
0 commit comments