python3Packages.vdirsyncer: fix test (#437045)

authored by Jörg Thalheim and committed by GitHub a5b1da64 5bd040e3

+13
+13
pkgs/development/python-modules/vdirsyncer/default.nix
··· 2 2 lib, 3 3 buildPythonPackage, 4 4 fetchPypi, 5 + fetchpatch, 5 6 pythonOlder, 6 7 click, 7 8 click-log, ··· 37 38 inherit pname version; 38 39 hash = "sha256-5DeFH+uYXew1RGVPj5z23RCbCwP34ZlWCGYDCS/+so8="; 39 40 }; 41 + 42 + patches = [ 43 + ( 44 + # Fix event_loop missing 45 + # TODO: remove it after vdirsyncer release 0.19.4 46 + fetchpatch { 47 + # https://github.com/pimutils/vdirsyncer/pull/1185 48 + url = "https://github.com/pimutils/vdirsyncer/commit/164559ad7a95ed795ce4ae8d9b287bd27704742d.patch"; 49 + hash = "sha256-nUGvkBnHr8nVPpBuhQ5GjaRs3QSxokdZUEIsOrQ+lpo="; 50 + } 51 + ) 52 + ]; 40 53 41 54 nativeBuildInputs = [ 42 55 setuptools