]> git.immae.eu Git - perso/Immae/Config/Nix/NUR.git/blob - overlays/python-packages/buildbot.nix
Initial commit published for NUR
[perso/Immae/Config/Nix/NUR.git] / overlays / python-packages / buildbot.nix
1 self: super: {
2 pythonOverrides = self.buildPythonOverrides (pyself: pysuper: {
3 buildbot-plugins = pysuper.buildbot-plugins // {
4 buildslist = self.python3PackagesPlus.buildbot-plugins.buildslist;
5 };
6 buildbot-full = pysuper.buildbot-full.withPlugins [ pyself.buildbot-plugins.buildslist ];
7 }) super.pythonOverrides;
8 }