nixos/templates/venv.nix

17 lines
317 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 ]))
2023-05-05 17:58:05 +01:00
poetry
black
isort
ruff
2023-04-04 09:48:40 +01:00
git
];
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
'';
}