Merge pull request #405 from cyraxjoe/override-cheroot

Override the dontPreferSetupPy attribute for cheroot
This commit is contained in:
adisbladis 2021-09-28 12:42:18 -05:00 committed by GitHub
commit 73f5524223
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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 ];