System/devshells/python.nix
2025-03-21 02:06:40 -04:00

21 lines
293 B
Nix

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