From fb6befeac7e8ede8098e82d9b9d671f43b46e0b0 Mon Sep 17 00:00:00 2001 From: Hartmut Goebel Date: Fri, 26 Sep 2025 12:17:54 +0200 Subject: [PATCH] gnu: trytond-account-payment-clearing: Update to 7.0.5 and switch to pyproject. * gnu/packages/tryton.scm(trytond-account-payment-clearing): Update to 7.0.5. [build-system] Switch to pyproject-build-system. [native-inputs] Add trytond-account-invoice. [propagated-inputs]: Add trytond-account and trytond-company. Change-Id: Ifafb54177706f639f15e8eeaaa42681a7b9586f1 --- gnu/packages/tryton.scm | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/gnu/packages/tryton.scm b/gnu/packages/tryton.scm index 80ef3bb817bd7c5f7d41919017a25fa2d1d46e16..b4609ff7236944e00a56a3d14e5b16ed5baf7c0d 100644 --- a/gnu/packages/tryton.scm +++ b/gnu/packages/tryton.scm @@ -933,21 +933,22 @@ methods.") (define-public trytond-account-payment-clearing (package (name "trytond-account-payment-clearing") - (version "6.2.1") + (version "7.0.5") (source (origin (method url-fetch) (uri (pypi-uri "trytond_account_payment_clearing" version)) (sha256 - (base32 "037d759nzfs5qh97a5hq24argrga9i3p0b966xckss38cwyq7ixq")))) - (build-system python-build-system) + (base32 "15q0jmkckxq4nhvkyhh88jm7gmcw54p6zgragw0d502c7l8bargx")))) + (build-system pyproject-build-system) (arguments (tryton-arguments "account_payment_clearing")) (native-inputs - `(,@(%standard-trytond-native-inputs) - ("trytond-account-statement" ,trytond-account-statement) - ("trytond-account-statement-rule" ,trytond-account-statement-rule))) + (cons* trytond-account-invoice + trytond-account-statement + trytond-account-statement-rule + %standard-trytond-native-inputs)) (propagated-inputs - (list trytond trytond-account-payment)) + (list trytond trytond-account trytond-account-payment trytond-company)) (home-page "https://docs.tryton.org/projects/modules-account-payment-clearing") (synopsis "Tryton module for payment clearing")