mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 18:03:04 +00:00
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:
parent
836a47d2c3
commit
e5fb7f2ef9
@ -22,6 +22,7 @@
|
||||
, aioresponses
|
||||
, vdirsyncer
|
||||
, testers
|
||||
, pythonRelaxDepsHook
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
@ -44,6 +45,11 @@ buildPythonPackage rec {
|
||||
setuptools
|
||||
setuptools-scm
|
||||
wheel
|
||||
pythonRelaxDepsHook
|
||||
];
|
||||
|
||||
pythonRelaxDeps = [
|
||||
"aiostream"
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
|
Loading…
Reference in New Issue
Block a user