From e77200c7f668f9d7379902956cfbac13fc49eafc Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Fri, 25 Jul 2025 11:12:56 +0100 Subject: [PATCH] gnu: python-etuples: Update to 0.3.10. * gnu/packages/python-xyz.scm (python-etuples): Update to 0.3.10. [build-system]: Use pyproject. [arguments] : Deselect one failing test. [native-inputs]: Add python-pytest, python-setuptools-next, and python-setuptools-scm. Change-Id: I3ba8812162cb71e86247deaf9dfad202ef54d04b --- gnu/packages/python-xyz.scm | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 4d1b7c1f96ee787fc46886f9e4e4f495a8c09d06..e14dc9f4fbe755ee8eac089050fe422459b39bd1 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -36628,17 +36628,26 @@ cons cells in Python.") (define-public python-etuples (package (name "python-etuples") - (version "0.3.3") + (version "0.3.10") (source (origin (method url-fetch) (uri (pypi-uri "etuples" version)) (sha256 - (base32 - "0jhfyp177v37rl0i7wqfx7q6s5qkz027hl283d1x8d0vm3w0zqc8")))) - (build-system python-build-system) + (base32 "0rqi0ml2az23ly5wanymgrfsnzm6dd6wxgric8a3fa42gqfyiz96")))) + (build-system pyproject-build-system) + (arguments + (list + #:test-flags + ;; assert False == {~_1: } + #~(list "--deselect=tests/test_dispatch.py::test_unification"))) + (native-inputs + (list python-pytest + python-setuptools-next + python-setuptools-scm)) (propagated-inputs - (list python-cons python-multipledispatch)) + (list python-cons + python-multipledispatch)) (home-page "https://github.com/pythological/etuples") (synopsis "S-expressions in Python") (description