schmittlau.ch-pelican/shell.nix

12 lines
173 B
Nix
Raw Normal View History

2022-02-28 12:37:35 +01:00
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = [
(pkgs.python3.withPackages (ps: with ps; [
pelican
markdown
2022-02-28 14:13:56 +01:00
typogrify
2022-02-28 12:37:35 +01:00
]))
];
}