diff options
author | Hartmut Goebel <h.goebel@crazy-compilers.com> | 2021-08-27 15:09:23 +0200 |
---|---|---|
committer | Hartmut Goebel <h.goebel@crazy-compilers.com> | 2021-09-21 21:00:29 +0200 |
commit | 0e0130f53b503b0043daeaae06d6d37ad0c2f9f2 (patch) | |
tree | 6431fc735910c6b57fddd08bcf20e079ca01c393 /gnu/packages | |
parent | a3ab0aa4da06ffd2ee8b054d4d881c46ed80406c (diff) | |
download | guix-0e0130f53b503b0043daeaae06d6d37ad0c2f9f2.tar guix-0e0130f53b503b0043daeaae06d6d37ad0c2f9f2.tar.gz |
gnu: Add trytond-notification-email.
* gnu/packages/tryton.scm (trytond-notification-email): New variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/tryton.scm | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/gnu/packages/tryton.scm b/gnu/packages/tryton.scm index 556a32e1f0..5b1a5c69b0 100644 --- a/gnu/packages/tryton.scm +++ b/gnu/packages/tryton.scm @@ -1974,6 +1974,34 @@ that are executed on selected records.") mailing lists.") (license license:gpl3+))) +(define-public trytond-notification-email + (package + (name "trytond-notification-email") + (version "6.0.1") + (source + (origin + (method url-fetch) + (uri (pypi-uri "trytond_notification_email" version)) + (sha256 + (base32 "12hi2p400b15vsmq2a4yifxppc08zdf5l64svv987mxxqv6403ma")))) + (build-system python-build-system) + (arguments (tryton-arguments "notification_email")) + (native-inputs + `(,@%standard-trytond-native-inputs + ("trytond-commission" ,trytond-commission) + ("trytond-company" ,trytond-company) + ("trytond-party" ,trytond-party) + ("trytond-web-user" ,trytond-web-user))) + (propagated-inputs + `(("trytond" ,trytond))) + (home-page "https://docs.tryton.org/projects/modules-notification-email") + (synopsis "Tryton module for sending email notifications") + (description "The @emph{Notification Email} Tryton module allows to define +email templates which will be sent to a list of recipients when a trigger is +fired on a record event. Extra reports from the same record can be attached +to the email.") + (license license:gpl3+))) + (define-public trytond-party (package (name "trytond-party") |