vdirsyncer: fix build by relaxing aiostream

vdirsyncer depends on aiostream<5.0, but aiostream 5 didn't introduce
any changes which break vdirsyncer as far as I know thus relaxing the
dependency fixes the build
This commit is contained in:
Anton Mosich 2024-01-14 13:36:57 +01:00
parent 836a47d2c3
commit e5fb7f2ef9
No known key found for this signature in database
GPG Key ID: 28F77AAFFAF5BAF6

View File

@ -22,6 +22,7 @@
, aioresponses
, vdirsyncer
, testers
, pythonRelaxDepsHook
}:
buildPythonPackage rec {
@ -44,6 +45,11 @@ buildPythonPackage rec {
setuptools
setuptools-scm
wheel
pythonRelaxDepsHook
];
pythonRelaxDeps = [
"aiostream"
];
propagatedBuildInputs = [