PropagatedBuild inputs workaround

This commit is contained in:
Johannes Kirschbauer
2024-07-26 15:23:25 +02:00
parent d7b6fc16a4
commit 7a3fad01e0
7 changed files with 35 additions and 8 deletions

View File

@@ -94,7 +94,14 @@ python3.pkgs.buildPythonApplication rec {
# that all necessary dependencies are consistently available both
# at build time and runtime,
buildInputs = allPythonDeps ++ runtimeDependencies;
propagatedBuildInputs = allPythonDeps ++ runtimeDependencies;
propagatedBuildInputs =
allPythonDeps
++ runtimeDependencies
++ [
# TODO: see postFixup clan-cli/default.nix:L188
clan-cli.propagatedBuildInputs
];
# also re-expose dependencies so we test them in CI
passthru = {