diff --git a/pkgs/by-name/pr/pretix/package.nix b/pkgs/by-name/pr/pretix/package.nix index 4ca8a8995841..22f3855b68e9 100644 --- a/pkgs/by-name/pr/pretix/package.nix +++ b/pkgs/by-name/pr/pretix/package.nix @@ -54,14 +54,14 @@ let in pythonPackages.buildPythonApplication (finalAttrs: { pname = "pretix"; - version = "2026.5.3"; + version = "2026.6.0"; pyproject = true; src = fetchFromGitHub { owner = "pretix"; repo = "pretix"; tag = "v${finalAttrs.version}"; - hash = "sha256-R77jPwcRgu5+NBR9H0tD14QfbUtoHme6z9maYzDVmPg="; + hash = "sha256-yKJGJziMpOB8ttz0n4USay03wJTId77bYT7id4OgoIE="; }; patches = [ @@ -87,7 +87,7 @@ pythonPackages.buildPythonApplication (finalAttrs: { npmDeps = fetchNpmDeps { inherit (finalAttrs) src; - hash = "sha256-Gkcz/QJCNuvhIdZnP/mPx5GD0EOJzxoP1dGI43pyOro="; + hash = "sha256-DJCvNcgDIY71Q9qg4Ng7SAM9i9wHhHOdJonpt5t/Xx8="; }; nativeBuildInputs = [ diff --git a/pkgs/by-name/pr/pretix/plugins/fontpack-free/package.nix b/pkgs/by-name/pr/pretix/plugins/fontpack-free/package.nix new file mode 100644 index 000000000000..2c4b91cc706f --- /dev/null +++ b/pkgs/by-name/pr/pretix/plugins/fontpack-free/package.nix @@ -0,0 +1,37 @@ +{ + lib, + buildPythonPackage, + fetchFromGitHub, + pretix-plugin-build, + setuptools, +}: + +buildPythonPackage (finalAttrs: { + pname = "pretix-fontpack-free"; + version = "1.11.1"; + pyproject = true; + __structuredAttrs = true; + + src = fetchFromGitHub { + owner = "pretix"; + repo = "pretix-fontpack-free"; + tag = "v${finalAttrs.version}"; + hash = "sha256-eeU8awLf/PSsLuAOobZhXVyQ3KM7jOEIz1ZLt4eDxzQ="; + }; + + build-system = [ + pretix-plugin-build + setuptools + ]; + + pythonImportsCheck = [ + "pretix_fontpackfree" + ]; + + meta = { + description = "Set of free fonts for pretix"; + homepage = "https://github.com/pretix/pretix-fontpack-free"; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ hexa ]; + }; +})