summaryrefslogtreecommitdiff
path: root/overlays/pelican/default.nix
blob: 5a487aa6f75077c3f31649c8cbd371dc9e2837ed (plain) (blame)
1
2
3
4
5
6
self: super: {
  pelican = with self.python3Packages;
    pelican.overrideAttrs(old: self.mylibs.fetchedGithub ./pelican.json // {
      propagatedBuildInputs = old.propagatedBuildInputs ++ [ pyyaml markdown ];
    });
}