From f1e6a9bc4ebc0c6b2b07ec5e70f3939e3ea07aa2 Mon Sep 17 00:00:00 2001 From: Hartmut Goebel Date: Fri, 26 Sep 2025 10:44:37 +0200 Subject: [PATCH] gnu: python-proteus: Downgrade to 7.0.2 (latest LTS version). Discussion resulted in the decision to maintain the LTS version, which is 7.0. * gnu/packages/tryton.scm(tryton): Downgrade to 7.0.2. [native-inputs]: Remove python-wheel. Change-Id: I32371ec7f0dba59dd8e55e3e0f89b69a4b7c01d1 --- gnu/packages/tryton.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gnu/packages/tryton.scm b/gnu/packages/tryton.scm index 724e86fa85de7c727cd217764b4e96caff692915..7f7086414b244cd51fa284319a87d0cfe5020aeb 100644 --- a/gnu/packages/tryton.scm +++ b/gnu/packages/tryton.scm @@ -164,20 +164,20 @@ and security.") (define-public python-proteus (package (name "python-proteus") - (version "7.4.1") + (version "7.0.2") (source (origin (method url-fetch) (uri (pypi-uri "proteus" version)) (sha256 - (base32 "1q3d0hkvmfsmxbx2qqp8zpslyy11mzwh0q2dkrh958yfyrzi1550")))) + (base32 "1mh82lqc3dbg1kq21lwbk4wa2ghjkrmkz1xx1mzkk50cyhdd800w")))) (build-system pyproject-build-system) ;; Tests require python-trytond-party which requires python-proteus. (arguments `(#:tests? #f)) (propagated-inputs (list python-dateutil python-defusedxml)) - (native-inputs (list python-setuptools python-wheel)) + (native-inputs (list python-setuptools)) (home-page "http://www.tryton.org/") (synopsis "Library to access a Tryton server as a client") (description