From c22f80df0e0c7ed7c9c507e512da345f4d1bfb53 Mon Sep 17 00:00:00 2001 From: Hartmut Goebel Date: Fri, 26 Sep 2025 12:50:53 +0200 Subject: [PATCH] gnu: trytond-product-image-attribute: Update to 7.0.0 and switch to pyproject. * gnu/packages/tryton.scm(trytond-product-image-attribute): Update to 7.0.0. [build-system]: Switch to pyproject-build-system. [arguments]: Fix module name argument. Disable tests requiring network. Change-Id: I175465d7aeb6b377afe633338f5a8ac22a975702 --- gnu/packages/tryton.scm | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/gnu/packages/tryton.scm b/gnu/packages/tryton.scm index 424fa3f84404cdacbb27b4056569ff8baaf5e52c..863b1b5a1690d02fad60b86042aaa81b69dd8b62 100644 --- a/gnu/packages/tryton.scm +++ b/gnu/packages/tryton.scm @@ -2511,16 +2511,19 @@ product and variant.") (define-public trytond-product-image-attribute (package (name "trytond-product-image-attribute") - (version "6.2.0") + (version "7.0.0") (source (origin (method url-fetch) (uri (pypi-uri "trytond_product_image_attribute" version)) (sha256 - (base32 "1ywyh158325v461qkka5svp4gygsfkkrxd6yl9dgfgypd483qjs8")))) - (build-system python-build-system) - (arguments (tryton-arguments "trytond_product_image_attribute")) - (native-inputs (%standard-trytond-native-inputs)) - (propagated-inputs (list trytond trytond-product + (base32 "0avbq2bvcynfb70148nmkm2pgzy6f40qm2hmh2ms5nsyn2r9bfz4")))) + (build-system pyproject-build-system) + ;; tests require network - unfortunately this disables the main test case + (arguments (tryton-arguments "product_image_attribute" + "-k not test_image_attribute")) + (native-inputs %standard-trytond-native-inputs) + (propagated-inputs (list trytond + trytond-product trytond-product-attribute trytond-product-image)) (home-page "https://docs.tryton.org/projects/modules-product-image-attribute")