diff options
author | Hartmut Goebel <h.goebel@crazy-compilers.com> | 2021-08-27 15:09:09 +0200 |
---|---|---|
committer | Hartmut Goebel <h.goebel@crazy-compilers.com> | 2021-09-21 21:00:26 +0200 |
commit | 43d22b6c20220ff554f89c66f4a91132016aa1da (patch) | |
tree | c64713afdd497f82d07f83c647bd9634401020b9 /gnu/packages | |
parent | a08db1e4a18bb80f87f8e9d32684749c1adce9ab (diff) |
gnu: Add trytond-account-statement-aeb43.
* gnu/packages/tryton.scm (trytond-account-statement-aeb43): New variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/tryton.scm | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/gnu/packages/tryton.scm b/gnu/packages/tryton.scm index 6e142ac0f2..2a79a3823b 100644 --- a/gnu/packages/tryton.scm +++ b/gnu/packages/tryton.scm @@ -998,6 +998,33 @@ and category.") statements. Statement can be used for bank statement, cash daybook etc.") (license license:gpl3+))) +(define-public trytond-account-statement-aeb43 + (package + (name "trytond-account-statement-aeb43") + (version "6.0.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "trytond_account_statement_aeb43" version)) + (sha256 + (base32 "09mkxb9m9167lpca8pb8k4rvnwhsng6b6pmhw9c21w2r4q0hppxv")))) + (build-system python-build-system) + (arguments (tryton-arguments "account_statement_aeb43")) + (native-inputs `(,@%standard-trytond-native-inputs)) + (propagated-inputs + `(("python-csb43" ,python-csb43) + ("python-stdnum" ,python-stdnum) + ("trytond" ,trytond) + ("trytond-account-statement" ,trytond-account-statement) + ("trytond-bank" ,trytond-bank))) + (home-page + "https://docs.tryton.org/projects/trytond-account-statement-aeb43") + (synopsis "Tryton module to import AEB43 statements") + (description "The @emph{Account Statement AEB43} Tryton module implements +the import of @emph{Norm 43} files as statement. @emph{Norm 43} is a standard +defined by the Spanish banking association.") + (license license:gpl3+))) + (define-public trytond-analytic-account (package (name "trytond-analytic-account") |