init pelican nix environment

This commit is contained in:
Trolli Schmittlauch 2022-02-28 12:37:35 +01:00
commit bc894700d4

10
shell.nix Normal file
View file

@ -0,0 +1,10 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = [
(pkgs.python3.withPackages (ps: with ps; [
pelican
markdown
]))
];
}