schmittlau.ch-pelican/shell.nix

12 lines
173 B
Nix

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = [
(pkgs.python3.withPackages (ps: with ps; [
pelican
markdown
typogrify
]))
];
}