diff options
author | Julian T <julian@jtle.dk> | 2021-06-08 19:48:28 +0200 |
---|---|---|
committer | Julian T <julian@jtle.dk> | 2021-06-08 19:48:28 +0200 |
commit | b4bea04224d5d418c148ea9f7badc8ad489e7a17 (patch) | |
tree | 79c7d1b8481e8780c60934e362d4e8153b844def /shell.nix |
Added image convertion and page generation script
Diffstat (limited to 'shell.nix')
-rw-r--r-- | shell.nix | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..d452969 --- /dev/null +++ b/shell.nix @@ -0,0 +1,7 @@ +{ pkgs ? import <nixpkgs> {}, pythonPackages ? pkgs.python38Packages }: + +pkgs.mkShell { + buildInputs = with pythonPackages; [ + jinja2 schema pillow pyyaml + ]; +} |