nixos/templates/venv.nix

9 lines
273 B
Nix
Raw Normal View History

{ pkgs ? import <nixpkgs> { }, python ? pkgs.python39, ... }:
2023-04-04 09:48:40 +01:00
pkgs.mkShell {
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
'';
}