Python devshell

This commit is contained in:
Nathan McCarty 2025-03-21 02:06:40 -04:00
parent 0cc727adaa
commit 18a8556187
2 changed files with 22 additions and 0 deletions

21
devshells/python.nix Normal file
View file

@ -0,0 +1,21 @@
{
withSystem,
inputs,
...
}: {
perSystem = {
config,
pkgs,
...
}: {
devShells.python = pkgs.mkShell {
buildInputs = with pkgs; [
(python3.withPackages (ps:
with ps; [
pip
virtualenv
]))
];
};
};
}

View file

@ -40,6 +40,7 @@
./devshells/raku.nix
./devshells/markdown.nix
./devshells/typst.nix
./devshells/python.nix
];
config = {
systems = [