Unverified Commit 9f30510e authored by R. RyanTM's avatar R. RyanTM Committed by Kerstin Humm
Browse files

radicale: 3.5.10 -> 3.6.0

pytz is a non-optional dependency of vobject now, so we shouldn't need
it anymore
parent aef8bcdf
Loading
Loading
Loading
Loading
+6 −5
Original line number Diff line number Diff line
@@ -7,14 +7,14 @@

python3.pkgs.buildPythonApplication rec {
  pname = "radicale";
  version = "3.5.10";
  version = "3.6.0";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "Kozea";
    repo = "Radicale";
    tag = "v${version}";
    hash = "sha256-tLBWPWkSGI7vQIGo9FIwCEgHWPlrs1q70CsAWQn9sEs=";
    hash = "sha256-FzCNmmlQeka+Z7h1Dp631coKPF7gc0LOWnyca994bgs=";
  };

  build-system = with python3.pkgs; [
@@ -25,14 +25,15 @@ python3.pkgs.buildPythonApplication rec {
    with python3.pkgs;
    [
      defusedxml
      passlib
      libpass
      vobject
      packaging
      pika
      requests
      pytz # https://github.com/Kozea/Radicale/issues/816
      ldap3
    ]
    ++ passlib.optional-dependencies.bcrypt;
    ++ libpass.optional-dependencies.argon2
    ++ libpass.optional-dependencies.bcrypt;

  __darwinAllowLocalNetworking = true;