aboutsummaryrefslogtreecommitdiff
path: root/overlays/khal/default.nix
blob: 597cc0edc22c97adbd25704e74f2d7a097510f7c (plain) (blame)
1
2
3
4
5
6
7
8
self: super: {
  khal = super.khal.overridePythonAttrs(old: {
    postPatch = ''
      sed -i "s/Invalid value for \"ics\"/Invalid value for \\\'ics\\\'/" tests/cli_test.py
      sed -i "s/Invalid value for \"\[ICS\]\"/Invalid value for \\\'[ICS]\\\'/" tests/cli_test.py
    '';
  });
}