Merge pull request #366 from l0b0/feat/make-pytest-randomly-installable

feat: Make pytest-randomly installable
This commit is contained in:
adisbladis 2021-08-25 11:45:34 -05:00 committed by GitHub
commit 046ee4939a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1285,6 +1285,12 @@ self: super:
}
);
pytest-randomly = super.pytest-randomly.overrideAttrs (old: {
postPatch = old.postPatch or "" + ''
sed -i 's/importlib-metadata >= 3.6.0 ; python_version < "3.10"//' setup.cfg
'';
});
pytest-runner = super.pytest-runner or super.pytestrunner;
pytest-pylint = super.pytest-pylint.overridePythonAttrs (