Merge pull request #185467 from fabaff/pyoverkiz-fix

python310Packages.pyoverkiz: allow later backoff releases
This commit is contained in:
Fabian Affolter 2022-08-07 00:05:32 +02:00 committed by GitHub
commit 3fe03c8763
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -45,6 +45,11 @@ buildPythonPackage rec {
pytestCheckHook
];
postPatch = ''
substituteInPlace pyproject.toml \
--replace 'backoff = "^1.10.0"' 'backoff = "*"'
'';
pythonImportsCheck = [
"pyoverkiz"
];