diff --git a/shape/shell.nix b/shape/shell.nix new file mode 100644 index 0000000..d55907c --- /dev/null +++ b/shape/shell.nix @@ -0,0 +1,8 @@ +{ pkgs ? import {} }: +let + python-with-my-packages = pkgs.python3.withPackages (p: with p; [ + pillow + pygments + ]); +in +python-with-my-packages.env