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

@ -1,26 +0,0 @@
{ pkgs, lib, python3 }:
with python3.pkgs;
python3.pkgs.buildPythonPackage rec {
pname = "buildbot-badges";
inherit (buildbot-pkg) version;
src = fetchPypi {
inherit pname version;
sha256 = "sha256-2hNf+IT5a+ZQ1186tCwahnpdjZjF3UCsyWWXtT+DuuU=";
};
buildInputs = [ buildbot-pkg ];
propagatedBuildInputs = [ cairosvg klein jinja2 ];
# No tests
doCheck = false;
meta = with lib; {
homepage = "https://buildbot.net/";
description = "Buildbot Badges Plugin";
maintainers = with maintainers; [ julienmalka ];
license = licenses.gpl2;
};
}