From eeb61e09552b21cd964fb41cecb37c194bdd10f4 Mon Sep 17 00:00:00 2001 From: Hartmut Goebel Date: Fri, 26 Sep 2025 12:41:50 +0200 Subject: [PATCH] gnu: trytond-commission: Update to 7.0.2 and switch to pyproject. * gnu/packages/tryton.scm(trytond-commission): Update to 7.0.2. [build-system] Switch to pyproject-build-system. [native-inputs] Add trytond-account-invoice-stock, trytond-sale. [propagated-inputs]: Add trytond-company. Change-Id: I7bbd2c61f303fdbaa975cae5ba7ef02b54a2ac75 --- gnu/packages/tryton.scm | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/gnu/packages/tryton.scm b/gnu/packages/tryton.scm index 3650ce7dd6a8f804ed27ce8b821cce10d60b6e18..13eca1ebd0a260ac7c4e437cd8ff7a09d75870d1 100644 --- a/gnu/packages/tryton.scm +++ b/gnu/packages/tryton.scm @@ -1721,24 +1721,27 @@ the weight is greater or equal but smaller than the next line.") (define-public trytond-commission (package (name "trytond-commission") - (version "6.2.0") + (version "7.0.2") (source (origin (method url-fetch) (uri (pypi-uri "trytond_commission" version)) (sha256 - (base32 "1m8cg6vb08paymi3bckqwp2vg0as36p6jadg86dc4b1axabas144")))) - (build-system python-build-system) + (base32 "0xvlkx45r4mrn86jib9mc98vlwx8c03c9py4dzfhpiy1lngz5hg8")))) + (build-system pyproject-build-system) (arguments (tryton-arguments "commission")) (native-inputs - `(,@(%standard-trytond-native-inputs) - ("trytond-sale" ,trytond-sale))) + (cons* trytond-account-invoice-stock + trytond-sale + trytond-stock + %standard-trytond-native-inputs)) (propagated-inputs (list python-simpleeval trytond trytond-account trytond-account-invoice trytond-account-product + trytond-company trytond-party trytond-product)) (home-page "https://docs.tryton.org/projects/modules-commission")