nixos/templates/venv.nix

17 lines
317 B
Nix

{ pkgs ? import <nixpkgs> { }, python ? pkgs.python39, ... }:
pkgs.mkShell {
nativeBuildInputs = with pkgs; [
(python.withPackages (ps: with ps; [ pip wheel ]))
poetry
black
isort
ruff
git
];
shellHook = ''
[ -d .venv ] || python -m venv .venv
source .venv/bin/activate
'';
}