Merge pull request #510 from nix-community/pyparsing-no-recurse

overrides.pyparsing: Prevent infinite recursion by disabling tests
This commit is contained in:
adisbladis 2022-01-17 22:02:24 +12:00 committed by GitHub
commit 83a135e781
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1362,6 +1362,11 @@ self: super:
}
);
pyparsing = super.pyparsing.overridePythonAttrs (old: {
# Prevent infinite recursion since checkInputs brings in coverage which in turn depends on pyparsing
doCheck = false;
});
pyproject-flake8 = super.pyproject-flake8.overridePythonAttrs (
old: {
buildInputs = (old.buildInputs or [ ]) ++ [ self.flit-core ];