Replace self with super

This commit is contained in:
Andreas Zweili 2022-11-19 18:20:16 +01:00
parent b3d6a71f9e
commit a6d90ff3bf
1 changed files with 4 additions and 4 deletions

View File

@ -21,26 +21,26 @@
(self: super: { (self: super: {
findpython = super.findpython.overridePythonAttrs ( findpython = super.findpython.overridePythonAttrs (
old: { old: {
buildInputs = (old.buildInputs or [ ]) ++ [ self.pdm ]; buildInputs = (old.buildInputs or [ ]) ++ [ super.pdm ];
} }
); );
django-floppyforms = django-floppyforms =
super.django-floppyforms.overridePythonAttrs super.django-floppyforms.overridePythonAttrs
( (
old: { old: {
buildInputs = (old.buildInputs or [ ]) ++ [ self.setuptools ]; buildInputs = (old.buildInputs or [ ]) ++ [ super.setuptools ];
} }
); );
django-crispy-forms = super.django-crispy-forms.overridePythonAttrs django-crispy-forms = super.django-crispy-forms.overridePythonAttrs
( (
old: { old: {
buildInputs = (old.buildInputs or [ ]) ++ [ self.setuptools ]; buildInputs = (old.buildInputs or [ ]) ++ [ super.setuptools ];
} }
); );
exceptiongroup = super.exceptiongroup.overridePythonAttrs exceptiongroup = super.exceptiongroup.overridePythonAttrs
( (
old: { old: {
buildInputs = (old.buildInputs or [ ]) ++ [ self.flit-scm ]; buildInputs = (old.buildInputs or [ ]) ++ [ super.flit-scm ];
} }
); );
}); });