gnu: Add trytond-analytic-sale.

* gnu/packages/tryton.scm (trytond-analytic-sale): New variable.
This commit is contained in:
Hartmut Goebel 2021-08-27 15:09:14 +02:00
parent d65f851365
commit 2c4e00225b
No known key found for this signature in database
GPG key ID: 634A8DFFD3F631DF

View file

@ -1360,6 +1360,30 @@ (define-public trytond-analytic-purchase
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")