From 51d03503959618d9f66bedc5e2edb92cbacbca65 Mon Sep 17 00:00:00 2001 From: Hartmut Goebel Date: Fri, 26 Sep 2025 12:49:34 +0200 Subject: [PATCH] gnu: trytond-product-image: Update to 7.0.2 and switch to pyproject. * gnu/packages/tryton.scm(trytond-product-image): Update to 7.0.2. [build-system] Switch to pyproject-build-system. [arguments]: Fix module name argument. Disable tests requiring network. Change-Id: Id0412a098a71e21c1587bcfea0c74c48d0b68f35 --- 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 f4fe251443b39fe63264ac277ffdaaac4b457a14..424fa3f84404cdacbb27b4056569ff8baaf5e52c 100644 --- a/gnu/packages/tryton.scm +++ b/gnu/packages/tryton.scm @@ -2491,15 +2491,16 @@ cost price of products to be calculated separately for each warehouse.") (define-public trytond-product-image (package (name "trytond-product-image") - (version "6.2.1") + (version "7.0.2") (source (origin (method url-fetch) (uri (pypi-uri "trytond_product_image" version)) (sha256 - (base32 "1xdqgc4y1sghnp5q25facdz3mnaxf8fysqlpbq3zrghsvi136mvd")))) - (build-system python-build-system) - (arguments (tryton-arguments "trytond_product_image")) - (native-inputs (%standard-trytond-native-inputs)) + (base32 "0x60yvgmg9wa8mqs3kalvhvgm8lwqdnzmwi960ipfims8mfsjfpj")))) + (build-system pyproject-build-system) + (arguments (tryton-arguments "product_image" + "-k not (test_get_image_url or test_image)")) + (native-inputs %standard-trytond-native-inputs) (propagated-inputs (list python-pillow trytond trytond-product)) (home-page "https://docs.tryton.org/projects/modules-product-image") (synopsis "Tryton module that adds images to products")