Skip to content

Commit

Permalink
pretix.plugins.mollie: init at 2.2.1 (#372772)
Browse files Browse the repository at this point in the history
  • Loading branch information
mweinelt authored Jan 11, 2025
2 parents 1b6b30b + 2ae93be commit b200f5b
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pkgs/by-name/pr/pretix/plugins/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
}:

{
mollie = callPackage ./mollie.nix { };

pages = callPackage ./pages.nix { };

passbook = callPackage ./passbook.nix { };
Expand Down
36 changes: 36 additions & 0 deletions pkgs/by-name/pr/pretix/plugins/mollie.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
pretix-plugin-build,
setuptools,
}:

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

src = fetchFromGitHub {
owner = "pretix";
repo = "pretix-mollie";
tag = "v${version}";
hash = "sha256-utrdFrE4XHDTi/45gUTFarD+PQoGIHc4gTkDR8dGu40=";
};

build-system = [
pretix-plugin-build
setuptools
];

pythonImportsCheck = [
"pretix_mollie"
];

meta = {
description = "Mollie payments for pretix";
homepage = "https://github.com/pretix/pretix-mollie";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ hexa ];
};
}

0 comments on commit b200f5b

Please sign in to comment.