Packaged buildbot-badges

This commit is contained in:
Julien Malka 2023-01-21 19:36:20 +01:00
parent fe0a7d03d3
commit 87241e5fec
Signed by: Luj
GPG key ID: 6FC74C847011FD83

View file

@ -1,11 +1,14 @@
{ pkgs, lib, buildPythonPackage, cairosvg, klein, jinja2 }:
buildPythonPackage rec {
{ pkgs, lib, python3 }:
with python3.pkgs;
python3.pkgs.buildPythonPackage rec {
pname = "buildbot-badges";
inherit (buildbot-pkg) version;
src = fetchPypi {
inherit pname version;
sha256 = "sha256-H0Dn+uTtFyZgyqbk3QQEc5t7CJovyzU+XuCoTe4Ajug=";
sha256 = "sha256-2hNf+IT5a+ZQ1186tCwahnpdjZjF3UCsyWWXtT+DuuU=";
};
buildInputs = [ buildbot-pkg ];
@ -20,3 +23,4 @@ buildPythonPackage rec {
maintainers = with maintainers; [ julienmalka ];
license = licenses.gpl2;
};
}