diff options
Diffstat (limited to 'gnu/packages/electronics.scm')
-rw-r--r-- | gnu/packages/electronics.scm | 18 |
1 files changed, 13 insertions, 5 deletions
diff --git a/gnu/packages/electronics.scm b/gnu/packages/electronics.scm index df9f8be91a..7c20450b5f 100644 --- a/gnu/packages/electronics.scm +++ b/gnu/packages/electronics.scm @@ -873,7 +873,7 @@ design.") (define-public python-vsg (package (name "python-vsg") - (version "3.32.0") + (version "3.33.0") (source (origin (method git-fetch) @@ -882,14 +882,20 @@ design.") (commit version))) (file-name (git-file-name name version)) (sha256 - (base32 "0ql96n291zm4j324q8fmlvy8xvrksb8v6fip0g0sw374z86hda53")))) + (base32 "1pnhha7dfika5jv1wrdwjkwrqaz22n0fb845wid5sy62gn549hmb")))) (build-system pyproject-build-system) (arguments (list #:test-flags ;; Tests are expensive and may introduce race condition on systems with ;; high (more than 16) threads count; limit parallel jobs to 8x. - #~(list "--numprocesses" (number->string (min 8 (parallel-job-count)))) + #~(list + "--numprocesses" (number->string (min 8 (parallel-job-count))) + ;; TODO: Remove in 3.34.0. + ;; "file" command on "utf-8_encoded.vhd" file fails to detect + ;; utf-8 formatting. See: + ;; https://github.com/jeremiah-c-leary/vhdl-style-guide/issues/1471 + "-vv" "-k" "not test_utf_8") #:phases #~(modify-phases %standard-phases (add-after 'unpack 'pathch-pytest-options @@ -900,6 +906,8 @@ design.") ((".*-n.*auto.*") ""))))))) (native-inputs (list python-pytest + python-pytest-cov + python-pytest-html python-pytest-xdist python-setuptools python-wheel)) @@ -1077,7 +1085,7 @@ them usable as simple logic analyzer and/or oscilloscope hardware.") (define-public symbiyosys (package (name "symbiyosys") - (version "0.55") + (version "0.56") (source (origin (method git-fetch) @@ -1086,7 +1094,7 @@ them usable as simple logic analyzer and/or oscilloscope hardware.") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "1nxaijz7afpa1y8i4pbpadgv7kpz8rk02j42kxjpv117lxd3g9za")))) + (base32 "0w95svb9vgvfqbbvqaq6jkia5jldbai9l7r8nrx93wcfrm82r36x")))) (build-system gnu-build-system) (arguments (list |