Merge pull request #355 from junkangli/override-arpeggio

Add override for arpeggio
This commit is contained in:
adisbladis 2021-08-14 14:02:39 -05:00 committed by GitHub
commit f008ee4f8e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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