mirror of
https://github.com/vale981/poetry2nix
synced 2025-03-04 16:51:40 -05:00
Merge pull request #510 from nix-community/pyparsing-no-recurse
overrides.pyparsing: Prevent infinite recursion by disabling tests
This commit is contained in:
commit
83a135e781
1 changed files with 5 additions and 0 deletions
|
@ -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 ];
|
||||
|
|
Loading…
Add table
Reference in a new issue