python37Packages.poetry: update stale substituteInPlace (#120876)

This commit is contained in:
Robert T. McGibbon 2021-04-30 02:30:40 -04:00 committed by GitHub
parent cba5ac76a2
commit b3477d186b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -38,7 +38,7 @@ buildPythonPackage rec {
postPatch = ''
substituteInPlace pyproject.toml \
--replace 'importlib-metadata = {version = "^1.6.0", python = "<3.8"}' \
'importlib-metadata = {version = ">=1.6,<2", python = "<3.8"}' \
'importlib-metadata = {version = ">=1.6", python = "<3.8"}' \
--replace 'version = "^21.2.0"' 'version = ">=21.2"'
'';