Skip to content

Commit

Permalink
Merge pull request #2 from LN-Zap/python-reqs
Browse files Browse the repository at this point in the history
Auto install python deps
  • Loading branch information
mrfelton authored Apr 18, 2024
2 parents f710ee6 + 2d65c11 commit 39cd8ad
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions devenv.nix
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,11 @@
scripts.schwifty-src.exec = "$DEVENV_ROOT/.venv/bin/python $DEVENV_ROOT/schwifty-cli/__main__.py $@";

# https://devenv.sh/languages/
languages.python.enable = true;
languages.python.venv.enable = true;
languages.python = {
enable = true;
venv.enable = true;
venv.requirements = ./requirements.txt;
};

# https://devenv.sh/integrations/codespaces-devcontainer/
devcontainer.enable = true;
Expand Down

0 comments on commit 39cd8ad

Please sign in to comment.