update buildbot package to follow the move in nixpkgs

This commit is contained in:
Luj 2023-06-15 11:03:22 +02:00
parent 090efe83e3
commit 707ceb94d6
Signed by: luj
GPG key ID: 6FC74C847011FD83
3 changed files with 3 additions and 30 deletions

View file

@ -3,7 +3,7 @@ with lib;
let
cfg = config.luj.buildbot;
port = "1810";
package = pkgs.python3Packages.buildbot-worker;
package = pkgs.buildbot-worker;
python = package.pythonModule;
home = "/var/lib/buildbot-worker";
buildbotDir = "${home}/worker";
@ -31,8 +31,8 @@ in
ps.requests
ps.treq
ps.psycopg2
ps.buildbot-worker
pkgs.buildbot-badges
pkgs.buildbot-worker
pkgs.buildbot-plugins.badges
];
};