aboutsummaryrefslogtreecommitdiff
path: root/overlays/python-packages/buildbot.nix
blob: ccf2f6a74db37dbb6e081ae5b55f3af79095cb5b (plain) (blame)
1
2
3
4
5
6
7
8
self: super: {
  pythonOverrides = self.buildPythonOverrides (pyself: pysuper: {
    buildbot-plugins = pysuper.buildbot-plugins // {
      buildslist = self.python3PackagesPlus.buildbot-plugins.buildslist;
    };
    buildbot-full = pysuper.buildbot-full.withPlugins [ pyself.buildbot-plugins.buildslist ];
  }) super.pythonOverrides;
}