Commit 0ebf6d5c authored by Robert Schütz's avatar Robert Schütz Committed by Kerstin
Browse files
parent 1d6675e5
Loading
Loading
Loading
Loading
+3 −7
Original line number Diff line number Diff line
@@ -6,20 +6,16 @@

python3.pkgs.buildPythonApplication rec {
  pname = "radicale";
  version = "3.2.3";
  version = "3.3.0";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "Kozea";
    repo = "Radicale";
    rev = "refs/tags/v${version}";
    hash = "sha256-1IlnXVetQQuKBt6+QVKNeMM6qBQAiUhqc+4x3xOnSdE=";
    hash = "sha256-S9/bPgItbr6rRr4WX+hmyU1RvKn5gz9FdZjYlr0hnd0=";
  };

  postPatch = ''
    sed -i '/addopts/d' setup.cfg
  '';

  build-system = with python3.pkgs; [
    setuptools
  ];
@@ -36,7 +32,7 @@ python3.pkgs.buildPythonApplication rec {
  __darwinAllowLocalNetworking = true;

  nativeCheckInputs = with python3.pkgs; [
    pytest7CheckHook
    pytestCheckHook
    waitress
  ];