From 5983c382bbfdd63aa776c0710517f8f42753b22c Mon Sep 17 00:00:00 2001 From: Joscha Date: Thu, 3 Feb 2022 01:26:42 +0100 Subject: [PATCH] Add shell.nix --- shape/shell.nix | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 shape/shell.nix 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