Unverified Commit 0e19cabd authored by Michael Daniels's avatar Michael Daniels Committed by GitHub
Browse files

python3Packages.radicale-infcloud: fix radicale >=3.2 compatibility (#379017)

parents b4065230 0740efbb
Loading
Loading
Loading
Loading
+9 −0
Original line number Diff line number Diff line
{
  lib,
  fetchFromGitHub,
  fetchpatch,
  buildPythonPackage,
  radicale,
  setuptools,
@@ -18,6 +19,14 @@ buildPythonPackage {
    hash = "sha256-xzBWIx2OOkCtBjlff1Z0VqgMhxWtgiOKutXUadT3tIo=";
  };

  patches = [
    # Radicale >=3.2 compatibility fix: https://github.com/Unrud/RadicaleInfCloud/pull/27
    (fetchpatch {
      url = "https://github.com/Unrud/RadicaleInfCloud/commit/c7487d34a544a499b751fdc92b01196edef599c6.patch";
      sha256 = "sha256-H5cSKFYQhC7+zpdbi0ojU8UlRJnldXtxv6d8gJ8D39w=";
    })
  ];

  build-system = [ setuptools ];

  dependencies = [ radicale ];