python310Packages.dropbox: fix build

This commit is contained in:
Robert Schütz 2023-03-01 13:56:07 -08:00 committed by Martin Weinelt
parent a670d1d0cf
commit 98d69d13c0

View File

@ -42,7 +42,10 @@ buildPythonPackage rec {
postPatch = ''
substituteInPlace setup.py \
--replace ">= 2.*" ">= 2.0" \
--replace "'pytest-runner == 5.2.0'," ""
substituteInPlace test/requirements.txt \
--replace ">=2.*" ">=2.0"
'';
doCheck = true;