Add shell.nix

This commit is contained in:
Joscha 2022-02-03 01:26:42 +01:00
parent 87a5f52ae2
commit 5983c382bb

8
shape/shell.nix Normal file
View file

@ -0,0 +1,8 @@
{ pkgs ? import <nixpkgs> {} }:
let
python-with-my-packages = pkgs.python3.withPackages (p: with p; [
pillow
pygments
]);
in
python-with-my-packages.env