From fe75467ecaa28806482733faff36d35e9de26b2b Mon Sep 17 00:00:00 2001 From: Hartmut Goebel Date: Fri, 26 Sep 2025 12:31:37 +0200 Subject: [PATCH] gnu: trytond-account-product: Update to 7.0.1 and switch to pyproject. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/tryton.scm(trytond-account-product): Update to 7.0.1. [build-system] Switch to pyproject-build-system. [propagated-inputs]: Move trytond-analytic-account to … [native-inputs] … here. Change-Id: Ibc29f1610958f4248da3be53b70e9d4b53b85f41 --- gnu/packages/tryton.scm | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/gnu/packages/tryton.scm b/gnu/packages/tryton.scm index 8b4271107590f87741ebfe8296964c0187e75369..1b5fc89ea1b744127669a6aa091f0bb07d14b9c0 100644 --- a/gnu/packages/tryton.scm +++ b/gnu/packages/tryton.scm @@ -1040,19 +1040,20 @@ checkout form to handle Setup Intent and Payment Intent by card.") (define-public trytond-account-product (package (name "trytond-account-product") - (version "6.2.1") + (version "7.0.1") (source (origin (method url-fetch) (uri (pypi-uri "trytond_account_product" version)) (sha256 - (base32 "1z1ri2plsmdnhgw64r5yxk2m346zcnva8nddmcwcalis35krgjcx")))) - (build-system python-build-system) + (base32 "17hgqn52li1sdwl9ppa6h2fx1x3hvnbaqb2lvpi0r97zz92wc75x")))) + (build-system pyproject-build-system) (arguments (tryton-arguments "account_product")) - (native-inputs (%standard-trytond-native-inputs)) + (native-inputs + (cons* trytond-analytic-account + %standard-trytond-native-inputs)) (propagated-inputs - (list trytond trytond-account trytond-analytic-account - trytond-company trytond-product)) + (list trytond trytond-account trytond-company trytond-product)) (home-page "https://www.tryton.org/") (synopsis "Tryton module to add accounting on product") (description