~ruther/guix-local

6ffcc4e7e95b0ab151f04417bd10d82e7fdb2de1 — Hartmut Goebel 6 months ago c22f80d
gnu: trytond-product-kit: Update to 7.0.7 and switch to pyproject.

* gnu/packages/tryton.scm(trytond-product-kit): Update to 7.0.7.
[build-system] Switch to pyproject-build-system. [native-inputs] Add
trytond-purchase-amendment, trytond-sale-amendment.

Change-Id: If5ce08d27bc56e5fcccf5bff56eb2551ca46c563
1 files changed, 12 insertions(+), 10 deletions(-)

M gnu/packages/tryton.scm
M gnu/packages/tryton.scm => gnu/packages/tryton.scm +12 -10
@@ 2535,23 2535,25 @@ attributes to product images.")
(define-public trytond-product-kit
  (package
    (name "trytond-product-kit")
    (version "6.2.2")
    (version "7.0.7")
    (source
     (origin
       (method url-fetch)
       (uri (pypi-uri "trytond_product_kit" version))
       (sha256
        (base32 "1s41jng93cmf4pahz59jmza1k6nj6pb532k0mn2xnr0pgnh26w9m"))))
    (build-system python-build-system)
        (base32 "00479fq97ldrg3hkwzhwaaadd430rcs9rg4dd13lbijckzhapj86"))))
    (build-system pyproject-build-system)
    (arguments (tryton-arguments "product_kit"))
    (native-inputs
     `(,@(%standard-trytond-native-inputs)
       ("trytond-account-invoice" ,trytond-account-invoice)
       ("trytond-account-invoice-stock" ,trytond-account-invoice-stock)
       ("trytond-company" ,trytond-company)
       ("trytond-purchase" ,trytond-purchase)
       ("trytond-sale" ,trytond-sale)
       ("trytond-stock" ,trytond-stock)))
     (cons* trytond-account-invoice
            trytond-account-invoice-stock
            trytond-company
            trytond-purchase
            trytond-purchase-amendment
            trytond-sale
            trytond-sale-amendment
            trytond-stock
            %standard-trytond-native-inputs))
    (propagated-inputs
     (list trytond trytond-product))
    (home-page "https://docs.tryton.org/projects/modules-product-kit")