Unverified Commit 5178a470 authored by Martin Weinelt's avatar Martin Weinelt Committed by GitHub
Browse files

pretix: 2026.2.0 -> 2026.3.0 (#505020)

parents a960ec33 cbda4e87
Loading
Loading
Loading
Loading
+11 −5
Original line number Diff line number Diff line
@@ -16,7 +16,7 @@ let
  python = python312.override {
    self = python;
    packageOverrides = self: super: {
      django = super.django_4;
      django = super.django_5;

      django-oauth-toolkit = super.django-oauth-toolkit.overridePythonAttrs (oldAttrs: {
        version = "2.3.0";
@@ -25,6 +25,12 @@ let
          tag = "v${version}";
          hash = "sha256-oGg5MD9p4PSUVkt5pGLwjAF4SHHf4Aqr+/3FsuFaybY=";
        };
        disabledTests = [
          # error message mismatch
          "test_validation_failed_message"
          # fails dns resolution
          "test_response_when_auth_server_response_return_404"
        ];
      });

      stripe = super.stripe.overridePythonAttrs rec {
@@ -45,13 +51,13 @@ let
  };

  pname = "pretix";
  version = "2026.2.0";
  version = "2026.3.0";

  src = fetchFromGitHub {
    owner = "pretix";
    repo = "pretix";
    tag = "v${version}";
    hash = "sha256-S8HcCtTBTU9oU7X+XD6avSZVtlRkXeF7pIqnggqJRPs=";
    hash = "sha256-D8i8wRdPak1L0D451WP7upr3yn+8SzG/0wuWD/EsemM=";
  };

  npmDeps = buildNpmPackage {
@@ -59,7 +65,7 @@ let
    inherit version src;

    sourceRoot = "${src.name}/src/pretix/static/npm_dir";
    npmDepsHash = "sha256-n4Gd4DKdP4b6LT34uy9aJDWcTz9okk4imq6vtw1cC+k=";
    npmDepsHash = "sha256-+84WFNs0iPhMb4YIKfHYByYeFQHITyWeF5yIM8pvQSs=";

    dontBuild = true;

@@ -96,7 +102,7 @@ python.pkgs.buildPythonApplication rec {
    "django-phonenumber-field"
    "dnspython"
    "drf_ujson2"
    "importlib-metadata"
    "importlib_metadata"
    "kombu"
    "markdown"
    "oauthlib"
+2 −2
Original line number Diff line number Diff line
@@ -8,14 +8,14 @@

buildPythonPackage rec {
  pname = "pretix-mollie";
  version = "2.5.2";
  version = "2.5.3";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "pretix";
    repo = "pretix-mollie";
    tag = "v${version}";
    hash = "sha256-Q9cofG4etT8Lb/RZbOVkSYlN1ONS3vPGkE53ph92cLg=";
    hash = "sha256-fWfevPhwpdHkpvuedf16b/f2QfHLy1/FAS3nVV4utwM=";
  };

  build-system = [
+2 −2
Original line number Diff line number Diff line
@@ -18,14 +18,14 @@

buildPythonPackage rec {
  pname = "pretix-passbook";
  version = "1.14.0";
  version = "1.14.1";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "pretix";
    repo = "pretix-passbook";
    rev = "v${version}";
    hash = "sha256-Qy9VQBhC6SvLqmQvf4nVFhHPRNYDn1W6eEdCOGbD0y8=";
    hash = "sha256-cTXgDr845TGMGWr9bSaFvRPQ0GynXn3CVnZxcf96orc=";
  };

  patches = [
+2 −2
Original line number Diff line number Diff line
@@ -9,14 +9,14 @@

buildPythonPackage (finalAttrs: {
  pname = "pretix-payone";
  version = "1.4.1";
  version = "1.4.2";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "pretix";
    repo = "pretix-payone";
    rev = "v${finalAttrs.version}";
    hash = "sha256-8DXORej+OJ65l/KGcanavHU4rabK9qTSnRPbdCidkgQ=";
    hash = "sha256-y1BO8Hz/pGKalURCbF3QJ49xn+L/sd8SWTGdCIl43yw=";
  };

  build-system = [
+2 −2
Original line number Diff line number Diff line
@@ -9,14 +9,14 @@

buildPythonPackage rec {
  pname = "pretix-worldlinedirect";
  version = "1.1.0";
  version = "1.1.1";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "pretix";
    repo = "pretix-worldlinedirect";
    rev = "v${version}";
    hash = "sha256-ofDGbRYTA2GTnVexn0dE6Iftq6+MkigOXWVR4kPUJzY=";
    hash = "sha256-SqXXnYetz52OFPKM61mANA71hrCEK7FgsdEoxskR5bk=";
  };

  build-system = [
Loading