buildstream: Add buildbox as a dependency

Buildbox is needed at runtime *and* during builds. Without `buildbox`
available to the package, or otherwise in `$PATH`, Buildstream will not
run.
This commit is contained in:
Dom Rodriguez
2025-06-23 18:07:48 +01:00
parent ed9275adcb
commit b850eb81e2
+19 -18
View File
@@ -34,26 +34,27 @@ python3Packages.buildPythonApplication rec {
setuptools-scm
];
dependencies = with python3Packages; [
click
dulwich
grpcio
jinja2
markupsafe
packaging
pluginbase
protobuf
psutil
pyroaring
requests
ruamel-yaml
ruamel-yaml-clib
tomlkit
ujson
];
dependencies =
[ buildbox ]
++ (with python3Packages; [
click
dulwich
grpcio
jinja2
markupsafe
packaging
pluginbase
protobuf
psutil
pyroaring
requests
ruamel-yaml
ruamel-yaml-clib
tomlkit
ujson
]);
buildInputs = [
buildbox
fuse3
lzip
patch