pretix: 2025.2.0 -> 2025.3.0 (#393608)

authored by Martin Weinelt and committed by GitHub bd748ffa c483bdea

+54 -11
+4 -3
pkgs/by-name/pr/pretix/package.nix
··· 52 52 }; 53 53 54 54 pname = "pretix"; 55 - version = "2025.2.0"; 55 + version = "2025.3.0"; 56 56 57 57 src = fetchFromGitHub { 58 58 owner = "pretix"; 59 59 repo = "pretix"; 60 60 rev = "refs/tags/v${version}"; 61 - hash = "sha256-ZVrdkIeVUAKb4617BCcfvs0HqFmctPb7zriDJplyUns="; 61 + hash = "sha256-D/j1RzKhRvdqMxcHg/NPZSoroN3etzh6/V38XV9W1cs="; 62 62 }; 63 63 64 64 npmDeps = buildNpmPackage { ··· 66 66 inherit version src; 67 67 68 68 sourceRoot = "${src.name}/src/pretix/static/npm_dir"; 69 - npmDepsHash = "sha256-MOxOzaP6p6Q61ZuDVzbYJvMXpCQ1pzQx86Yl24yt4SQ="; 69 + npmDepsHash = "sha256-6qjG0p7pLtTd9CBVVzoeUPv6Vdr5se1wuI5qcKJH2Os="; 70 70 71 71 dontBuild = true; 72 72 ··· 99 99 "importlib-metadata" 100 100 "kombu" 101 101 "markdown" 102 + "phonenumberslite" 102 103 "pillow" 103 104 "protobuf" 104 105 "pycryptodome"
+2 -2
pkgs/by-name/pr/pretix/plugins/mollie/package.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "pretix-mollie"; 11 - version = "2.3.0"; 11 + version = "2.3.1"; 12 12 pyproject = true; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "pretix"; 16 16 repo = "pretix-mollie"; 17 17 tag = "v${version}"; 18 - hash = "sha256-sI4uHMACCf9HmcJUxJlkGgT70ra/bRs6XorghX99iJo="; 18 + hash = "sha256-6VwS8yzueeZ7Yf8U98nljFlFPNVJt6ncd9Qr8nz/SWE="; 19 19 }; 20 20 21 21 build-system = [
+42
pkgs/by-name/pr/pretix/plugins/servicefees/package.nix
··· 1 + { 2 + lib, 3 + buildPythonPackage, 4 + fetchFromGitHub, 5 + django, 6 + pretix-plugin-build, 7 + setuptools, 8 + }: 9 + 10 + buildPythonPackage rec { 11 + pname = "pretix-servicefees"; 12 + version = "1.13.1"; 13 + pyproject = true; 14 + 15 + src = fetchFromGitHub { 16 + owner = "pretix"; 17 + repo = "pretix-servicefees"; 18 + tag = "v${version}"; 19 + hash = "sha256-oZXJd7Pj9dPfSZ1FqTxT6FlNA8cJDWIPPLS8nN+l7ZM="; 20 + }; 21 + 22 + build-system = [ 23 + django 24 + pretix-plugin-build 25 + setuptools 26 + ]; 27 + 28 + postBuild = '' 29 + make 30 + ''; 31 + 32 + doCheck = false; # no tests 33 + 34 + pythonImportsCheck = [ "pretix_servicefees" ]; 35 + 36 + meta = with lib; { 37 + description = "Allows to charge a flat fee on all orders"; 38 + homepage = "https://github.com/pretix/pretix-servicefees"; 39 + license = licenses.asl20; 40 + maintainers = with maintainers; [ hexa ]; 41 + }; 42 + }
+6 -6
pkgs/by-name/pr/pretix/plugins/stretchgoals/package.nix
··· 7 7 }: 8 8 9 9 buildPythonPackage { 10 - pname = "pretix-avgchart"; 11 - version = "unstable-2023-11-27"; 10 + pname = "pretix-stretchgoals"; 11 + version = "1.0.1"; 12 12 pyproject = true; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "rixx"; 16 - repo = "pretix-avgchart"; 17 - rev = "219816c7ec523a5c23778523b2616ac0c835cb3a"; 18 - hash = "sha256-1V/0PUvStgQeBQ0v6GoofAgyPmWs3RD+v5ekmAO9vFU="; 16 + repo = "pretix-stretchgoals"; 17 + rev = "177238920a863f71cf03f174e2841f5b630574e9"; 18 + hash = "sha256-Sbbxg6viRdALjZwqEmN2Js/qbMShe5xMg00jUccnhsA="; 19 19 }; 20 20 21 21 build-system = [ ··· 31 31 32 32 meta = with lib; { 33 33 description = "Display the average ticket sales price over time"; 34 - homepage = "https://github.com/rixx/pretix-avgchart"; 34 + homepage = "https://github.com/rixx/pretix-stretchgoals"; 35 35 license = licenses.asl20; 36 36 maintainers = with maintainers; [ hexa ]; 37 37 };