1
1
Fork 0
mirror of https://github.com/the-nix-way/dev-templates synced 2024-05-03 22:26:53 +02:00

feature: add python venv

This commit is contained in:
Stephen Stubbs 2024-04-15 19:46:09 +01:00
parent cb94157e1a
commit b89f77d481
2 changed files with 6 additions and 4 deletions

View File

@ -221,7 +221,6 @@ The sections below list what each template includes. In all cases, you're free t
- [Python] 3.11.4
- [pip] 23.0.1
- [Virtualenv] 20.19.0
### [`ruby`](./ruby/)
@ -355,7 +354,6 @@ All of the templates have only the root [flake](./flake.nix) as a flake input. T
[texlive]: https://www.tug.org/texlive/
[tflint]: https://github.com/terraform-linters/tflint
[vault]: https://www.vaultproject.io
[virtualenv]: https://pypi.org/project/virtualenv
[vulnix]: https://github.com/flyingcircusio/vulnix
[yarn]: https://yarnpkg.com
[zig]: https://ziglang.org

View File

@ -13,8 +13,12 @@
{
devShells = forEachSupportedSystem ({ pkgs }: {
default = pkgs.mkShell {
packages = with pkgs; [ python311 virtualenv ] ++
(with pkgs.python311Packages; [ pip ]);
venvDir = "venv";
packages = with pkgs; [ python311 ] ++
(with pkgs.python311Packages; [
pip
venvShellHook
]);
};
});
};