diff options
author | Hartmut Goebel <h.goebel@crazy-compilers.com> | 2021-08-27 15:09:41 +0200 |
---|---|---|
committer | Hartmut Goebel <h.goebel@crazy-compilers.com> | 2021-09-21 21:00:32 +0200 |
commit | f243e7761ee338d882b073042753f2ec63c9102e (patch) | |
tree | 718f46e78102082512fb63f7910d36882bdc2cb6 | |
parent | 5bbd9abdbb39ff4e614ede735bd84f63fa410257 (diff) | |
download | guix-f243e7761ee338d882b073042753f2ec63c9102e.tar.gz |
gnu: Add trytond-sale-price-list.
* gnu/packages/tryton.scm (trytond-sale-price-list): New variable.
-rw-r--r-- | gnu/packages/tryton.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/tryton.scm b/gnu/packages/tryton.scm index a54b53ef5e..5b2562dd66 100644 --- a/gnu/packages/tryton.scm +++ b/gnu/packages/tryton.scm @@ -3288,6 +3288,31 @@ lead/opportunity model.") payments prior to the creation of any invoice.") (license license:gpl3+))) +(define-public trytond-sale-price-list + (package + (name "trytond-sale-price-list") + (version "6.0.1") + (source + (origin + (method url-fetch) + (uri (pypi-uri "trytond_sale_price_list" version)) + (sha256 + (base32 "0xg0i12a7billpdv13arvc3j5jsbn9gzis8snkl84315ayz3irq4")))) + (build-system python-build-system) + (arguments (tryton-arguments "sale_price_list")) + (native-inputs `(,@%standard-trytond-native-inputs)) + (propagated-inputs + `(("trytond" ,trytond) + ("trytond-company" ,trytond-company) + ("trytond-party" ,trytond-party) + ("trytond-product-price-list" ,trytond-product-price-list) + ("trytond-sale" ,trytond-sale))) + (home-page "https://docs.tryton.org/projects/modules-sale-price-list") + (synopsis "Tryton module to add price list on sale") + (description "The @emph{Sale Price List} Tryton module adds support for +price list on sale. A price list can be set per party or as default.") + (license license:gpl3+))) + (define-public trytond-stock (package (name "trytond-stock") |