file-visualisation/shape/shell.nix
2022-02-03 01:26:42 +01:00

8 lines
165 B
Nix

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