From 1adf50f5df549109725734c12b202d2aa1453601 Mon Sep 17 00:00:00 2001 From: Danny Milosavljevic Date: Thu, 1 Jan 2026 21:10:54 +0100 Subject: [PATCH] gnu: Add python-hdlconvertorast. * gnu/packages/electronics.scm (python-hdlconvertorast): New variable. --- gnu/packages/electronics.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/gnu/packages/electronics.scm b/gnu/packages/electronics.scm index fe8da9dd4220433adf3347a409bbd0f5174662e7..efac568cff02614145328609507e2026bd026d7d 100644 --- a/gnu/packages/electronics.scm +++ b/gnu/packages/electronics.scm @@ -2179,6 +2179,32 @@ a standard file format used in @acronym{EDA, Electronic Design Automation} for example for timing information of digital circuits.") (license license:gpl3+))) +(define-public python-hdlconvertorast + (package + (name "python-hdlconvertorast") + (version "1.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/Nic30/hdlConvertorAst") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1zv067imbdihyqwy7f0j80x9a2857vifhky60vc91dffjl1zjg1i")))) + (build-system pyproject-build-system) + (native-inputs + (list python-pytest + python-setuptools)) + (home-page "https://github.com/Nic30/hdlConvertorAst") + (synopsis "@acronym{AST, Abstract Syntax Tree} library for VHDL and +SystemVerilog") + (description + "This package provides a library of @acronym{AST, Abstract Syntax Tree} nodes +for @acronym{VHDL, Very high speed integrated circuit Hardware Description Language}, +SystemVerilog, and SystemC, with conversion between languages and to JSON.") + (license license:expat))) + (define-public python-pyucis (package (name "python-pyucis")