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 | 71ba1bc0c356d265891b8a7a2fad899c34995e44 (patch) | |
tree | 51155179723646b56baaabf299f5e77b7412d0c9 /gnu/packages | |
parent | f243e7761ee338d882b073042753f2ec63c9102e (diff) | |
download | guix-71ba1bc0c356d265891b8a7a2fad899c34995e44.tar.gz guix-71ba1bc0c356d265891b8a7a2fad899c34995e44.zip |
gnu: Add trytond-sale-product-customer.
* gnu/packages/tryton.scm (trytond-sale-product-customer): New variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/tryton.scm | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/gnu/packages/tryton.scm b/gnu/packages/tryton.scm index 5b2562dd66..4735891f6c 100644 --- a/gnu/packages/tryton.scm +++ b/gnu/packages/tryton.scm @@ -3313,6 +3313,32 @@ payments prior to the creation of any invoice.") price list on sale. A price list can be set per party or as default.") (license license:gpl3+))) +(define-public trytond-sale-product-customer + (package + (name "trytond-sale-product-customer") + (version "6.0.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "trytond_sale_product_customer" version)) + (sha256 + (base32 "0yys6mc52v62v51wkg3wngmz9jhqb2lq9v5jvb93j0yh5ah07a4v")))) + (build-system python-build-system) + (arguments (tryton-arguments "sale_product_customer")) + (native-inputs + `(,@%standard-trytond-native-inputs + ("trytond-sale-amendment" ,trytond-sale-amendment))) + (propagated-inputs + `(("trytond" ,trytond) + ("trytond-product" ,trytond-product) + ("trytond-sale" ,trytond-sale))) + (home-page + "https://docs.tryton.org/projects/modules-sale-product-customer") + (synopsis "Tryton module to manage customer product on sale") + (description "The @emph{Sale Product_Customer} Tryton module defines +customer's names and codes for products or variants.") + (license license:gpl3+))) + (define-public trytond-stock (package (name "trytond-stock") |