Files
pretix_cgo/src/pretix/plugins/paypal/__init__.py
2016-11-17 23:50:42 +01:00

32 lines
853 B
Python

from django.apps import AppConfig
from django.utils.functional import cached_property
from django.utils.translation import ugettext_lazy as _
from pretix import __version__ as version
class PaypalApp(AppConfig):
name = 'pretix.plugins.paypal'
verbose_name = _("PayPal")
class PretixPluginMeta:
name = _("PayPal")
author = _("the pretix team")
version = version
description = _("This plugin allows you to receive payments via PayPal")
def ready(self):
from . import signals # NOQA
@cached_property
def compatibility_errors(self):
errs = []
try:
import paypalrestsdk # NOQA
except ImportError:
errs.append("Python package 'paypalrestsdk' is not installed.")
return errs
default_app_config = 'pretix.plugins.paypal.PaypalApp'