From 27a20ac3ad167ca5e64c4c72ff723f564a7aeb3f Mon Sep 17 00:00:00 2001 From: Hartmut Goebel Date: Fri, 26 Sep 2025 12:57:57 +0200 Subject: [PATCH] gnu: trytond-sale-history: Update to 7.0.0 and switch to pyproject. * gnu/packages/tryton.scm(trytond-sale-history): Update to 7.0.0. [build-system] Switch to pyproject-build-system. [native-inputs] Add trytond-sale-subscription. Change-Id: Id0643c15367075bb2a91f0076c87ff47f0e7bc94 --- gnu/packages/tryton.scm | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/gnu/packages/tryton.scm b/gnu/packages/tryton.scm index a5e91aceb3905cae1a9692a7f1a94383517880b7..9b1df7508d6bd8467886b563995929e9bb77f8d4 100644 --- a/gnu/packages/tryton.scm +++ b/gnu/packages/tryton.scm @@ -3426,16 +3426,18 @@ and redeeming of gift cards.") (define-public trytond-sale-history (package (name "trytond-sale-history") - (version "6.2.0") + (version "7.0.0") (source (origin (method url-fetch) (uri (pypi-uri "trytond_sale_history" version)) (sha256 - (base32 "0snjdbhq5mf8j7z6i6yqk3kjl3mpjsdzwnh5bzcnax2n4zrscvxq")))) - (build-system python-build-system) + (base32 "1adi6hvlpmg036h29zjzj6aismcvh9dk94acmk12bg7qv4zw9imx")))) + (build-system pyproject-build-system) (arguments (tryton-arguments "sale_history")) - (native-inputs (%standard-trytond-native-inputs)) + (native-inputs + (cons* trytond-sale-subscription + %standard-trytond-native-inputs)) (propagated-inputs (list trytond trytond-sale)) (home-page "https://docs.tryton.org/projects/modules-sale-history")