Add override arpeggio

This commit is contained in:
Li Junkang 2021-08-15 00:52:08 +08:00
parent 35017baff2
commit e0cbe3a9e5

View file

@ -58,6 +58,12 @@ self: super:
'';
});
arpeggio = super.arpeggio.overridePythonAttrs (
old: {
nativeBuildInputs = (old.nativeBuildInputs or [ ]) ++ [ self.pytest-runner ];
}
);
astroid = super.astroid.overridePythonAttrs (
old: rec {
buildInputs = (old.buildInputs or [ ]) ++ [ self.pytest-runner ];