We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f17b361 commit 5269a1fCopy full SHA for 5269a1f
1 file changed
default.nix
@@ -206,7 +206,9 @@ rec {
206
}));
207
in
208
py_final.pkgs."${func}" ( pass_args // {
209
- propagatedBuildInputs = result.select_pkgs py_final.pkgs;
+ propagatedBuildInputs =
210
+ (result.select_pkgs py_final.pkgs)
211
+ ++ (if hasAttr "propagatedBuildInputs" args then args.propagatedBuildInputs else []);
212
src = src;
213
inherit doCheck pname version;
214
passthru = passthru // {
0 commit comments