diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-25 11:12:56 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-25 11:32:16 +0100 |
commit | e77200c7f668f9d7379902956cfbac13fc49eafc (patch) | |
tree | 55826414bbf3a47d1a07a63f2ee19d645b703bfb /gnu/packages/python-xyz.scm | |
parent | ddf43f798b11ac314c28019a3a7b542673120ade (diff) |
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] <test-flags>: Deselect one failing test.
[native-inputs]: Add python-pytest, python-setuptools-next, and
python-setuptools-scm.
Change-Id: I3ba8812162cb71e86247deaf9dfad202ef54d04b
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r-- | gnu/packages/python-xyz.scm | 19 |
1 files changed, 14 insertions, 5 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 4d1b7c1f96..e14dc9f4fb 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: <built-in function add>} + #~(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 |