nixos/templates/venv.nix

13 lines
274 B
Nix
Raw Normal View History

2023-05-17 17:10:18 +01:00
{
pkgs ? import <nixpkgs> {},
python ? pkgs.python39,
...
}:
2023-04-04 09:48:40 +01:00
pkgs.mkShell {
2023-05-17 17:10:18 +01:00
nativeBuildInputs = with pkgs; [(python.withPackages (ps: with ps; [pip wheel])) poetry git];
2023-04-04 09:48:40 +01:00
shellHook = ''
2023-04-20 16:01:26 +01:00
[ -d .venv ] || python -m venv .venv
source .venv/bin/activate
2023-04-04 09:48:40 +01:00
'';
}