Override the dontPreferSetupPy attribute for cheroot

This commit is contained in:
Joel Rivera 2021-09-27 19:20:05 -05:00
parent 2df09faeff
commit d1644c5c55

View file

@ -156,6 +156,12 @@ self: super:
}
);
cheroot = super.cheroot.overridePythonAttrs (
old: {
dontPreferSetupPy = true;
}
);
colour = super.colour.overridePythonAttrs (
old: {
buildInputs = (old.buildInputs or [ ]) ++ [ self.d2to1 ];