Remove some obsolete overrides

This commit is contained in:
adisbladis 2023-11-07 18:40:20 +13:00
parent 944dfe4a1f
commit 7a001e012c

View file

@ -234,12 +234,6 @@ lib.makeScope pkgs.newScope (self: {
getFunctorFn
(
[
# Remove Python packages aliases with non-normalized names to avoid issues with infinite recursion (issue #750).
(_self: super: {
# Upstream nixpkgs uses non canonical names
async-generator = super.async-generator or super.async_generator or null;
})
(self: super: lib.attrsets.mapAttrs
(
name: value:
@ -258,9 +252,6 @@ lib.makeScope pkgs.newScope (self: {
};
__toPluginAble = toPluginAble self;
} // lib.optionalAttrs (! super ? setuptools-scm) {
# The canonical name is setuptools-scm
setuptools-scm = super.setuptools_scm;
}
)