From d0ebb9aa5dd79cad81d4f50b55886f71f83f6714 Mon Sep 17 00:00:00 2001 From: Cayetano Santos Date: Sat, 30 Aug 2025 00:05:09 +0200 Subject: [PATCH] gnu: python-edalize: Update to 0.6.1. * gnu/packages/electronics.scm (python-edalize): Update to 0.6.1. [arguments]<#:test-flags>: Enable previously failing tests. [native-inputs]: Remove python-setuptools and python-wheel; add python-setuptools-next. Change-Id: I99e33582f4a4248f2ea6e9121dddf32e1e3f1b04 Signed-off-by: Maxim Cournoyer --- gnu/packages/electronics.scm | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/gnu/packages/electronics.scm b/gnu/packages/electronics.scm index f07586f7114366c4321ccce77200c93adba0633e..9bb784504e23c443c6761225637472468857f59e 100644 --- a/gnu/packages/electronics.scm +++ b/gnu/packages/electronics.scm @@ -764,7 +764,7 @@ and reusable bus interfaces to be used with @code{cocotb}.") (define-public python-edalize (package (name "python-edalize") - (version "0.6.0") + (version "0.6.1") (source (origin (method git-fetch) @@ -773,7 +773,7 @@ and reusable bus interfaces to be used with @code{cocotb}.") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "1gfysk6wj3mxndyzma604i3y2lkfn1im0bdmzxv5rn4x2nyk68sc")))) + (base32 "03mkzkmi96jkrpgcnawixvy832p3b8li8lrirdjhfp9dmp7d5kg5")))) (build-system pyproject-build-system) (arguments (list @@ -782,18 +782,13 @@ and reusable bus interfaces to be used with @code{cocotb}.") ;; XXX: Tests failing with assertion not equal, find out ;; why. (list "not test_gatemate" - "test_gatemate_minimal" "test_vcs_tool_options" "test_vcs_no_tool_options" "test_vcs_minimal" - "test_vivado_edif_netlist" - "test_vivado_edif_netlist_no_link_design" "test_xcelium") " and not ")))) (native-inputs - (list python-pytest - python-setuptools - python-wheel)) + (list python-pytest python-setuptools-next)) (propagated-inputs (list python-jinja2)) (home-page "https://github.com/olofk/edalize/")