kdePackages.ki18n: fixup build, missing python3

https://hydra.nixos.org/build/256386319/nixlog/2/tail

I don't know what's changed to cause this regression,
but adding python3 like this shouldn't make things worse.
This commit is contained in:
Vladimír Čunát 2024-04-16 07:44:01 +02:00
parent 097ced11fa
commit ee727e253e
No known key found for this signature in database
GPG Key ID: E747DF1F9575A3AA
1 changed files with 2 additions and 1 deletions

View File

@ -1,9 +1,10 @@
{
mkKdeDerivation,
qtdeclarative,
python3,
}:
mkKdeDerivation {
pname = "ki18n";
extraBuildInputs = [qtdeclarative];
extraBuildInputs = [qtdeclarative python3];
}