From 6ffcc4e7e95b0ab151f04417bd10d82e7fdb2de1 Mon Sep 17 00:00:00 2001 From: Hartmut Goebel Date: Fri, 26 Sep 2025 12:51:08 +0200 Subject: [PATCH] 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 --- gnu/packages/tryton.scm | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/gnu/packages/tryton.scm b/gnu/packages/tryton.scm index 863b1b5a1690d02fad60b86042aaa81b69dd8b62..f555873f7d4d1919b84519968a6bbbd6a4068516 100644 --- a/gnu/packages/tryton.scm +++ b/gnu/packages/tryton.scm @@ -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")