From 28c8bbf6140e2e08ba549ca8ca74e5e3830c79e8 Mon Sep 17 00:00:00 2001 From: Hartmut Goebel Date: Fri, 26 Sep 2025 12:38:57 +0200 Subject: [PATCH] gnu: trytond-analytic-invoice: Update to 7.0.0 and switch to pyproject. * gnu/packages/tryton.scm(trytond-analytic-invoice): Update to 7.0.0. [build-system] Switch to pyproject-build-system. [native-inputs] Add trytond-account-invoice-defer. Change-Id: I7120957c2ba2fffcb8ed110fef494d93015d252b --- gnu/packages/tryton.scm | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/gnu/packages/tryton.scm b/gnu/packages/tryton.scm index 8b34d72cde841c21e4a03a035889e56f2136237d..385085c5f5dc42e76d781781347bbb6fb1a458d9 100644 --- a/gnu/packages/tryton.scm +++ b/gnu/packages/tryton.scm @@ -1462,18 +1462,19 @@ transactions against the budgeted amount.") (define-public trytond-analytic-invoice (package (name "trytond-analytic-invoice") - (version "6.2.0") + (version "7.0.0") (source (origin (method url-fetch) (uri (pypi-uri "trytond_analytic_invoice" version)) (sha256 - (base32 "0416knbcn7wcx4anzvl0hw7qcdn3xndlh5i0pa0xffvw6kw1ijp9")))) - (build-system python-build-system) + (base32 "0cj20yzaxsmc8ifzqk1d1vvs1bb8r3dlivpqkq0gdjn3mqblfplx")))) + (build-system pyproject-build-system) (arguments (tryton-arguments "analytic_invoice")) (native-inputs - `(,@(%standard-trytond-native-inputs) - ("trytond-account-asset" ,trytond-account-asset))) + (cons* trytond-account-asset + trytond-account-invoice-defer + %standard-trytond-native-inputs)) (propagated-inputs (list trytond trytond-account-invoice trytond-analytic-account)) (home-page "https://docs.tryton.org/projects/modules-analytic-invoice")