From 2c4e00225b05f2e0b0b5102c3dc78a45374ca669 Mon Sep 17 00:00:00 2001 From: Hartmut Goebel Date: Fri, 27 Aug 2021 15:09:14 +0200 Subject: gnu: Add trytond-analytic-sale. * gnu/packages/tryton.scm (trytond-analytic-sale): New variable. --- gnu/packages/tryton.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/tryton.scm b/gnu/packages/tryton.scm index 9ef5178598..3df4094492 100644 --- a/gnu/packages/tryton.scm +++ b/gnu/packages/tryton.scm @@ -1360,6 +1360,30 @@ analytic accounts on invoice line.") analytic accounts on purchase line.") (license license:gpl3+))) +(define-public trytond-analytic-sale + (package + (name "trytond-analytic-sale") + (version "6.0.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "trytond_analytic_sale" version)) + (sha256 + (base32 "07l97jmg67468pihymfcjagqbbfdcmry3654f24zbmnljxy2qm1x")))) + (build-system python-build-system) + (arguments (tryton-arguments "analytic_sale")) + (native-inputs `(,@%standard-trytond-native-inputs)) + (propagated-inputs + `(("trytond" ,trytond) + ("trytond-analytic-account" ,trytond-analytic-account) + ("trytond-analytic-invoice" ,trytond-analytic-invoice) + ("trytond-sale" ,trytond-sale))) + (home-page "https://docs.tryton.org/projects/modules-analytic-sale") + (synopsis "Tryton module to add analytic accounting on sale") + (description "The @emph{Analytic Sale} Tryton module allows to set +analytic accounts on sale line.") + (license license:gpl3+))) + (define-public trytond-company (package (name "trytond-company") -- cgit v1.2.3