guix_mirror_bot pushed a commit to branch master
in repository guix.

commit c93abddda82f47619fffbba58dc3ff7cb42c7087
Author: Thomas Kramer <[email protected]>
AuthorDate: Thu Dec 4 20:27:47 2025 +0000

    gnu: Add python-liberty-parser.
    
    * gnu/packages/electronics.scm (python-liberty-parser): Add variable.
    
    Change-Id: I91d7545ccb938ea534553f35e8f19ca0507dc625
    Signed-off-by: Maxim Cournoyer <[email protected]>
---
 gnu/packages/electronics.scm | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/gnu/packages/electronics.scm b/gnu/packages/electronics.scm
index 57936c6c11..75c8523b9c 100644
--- a/gnu/packages/electronics.scm
+++ b/gnu/packages/electronics.scm
@@ -2106,6 +2106,31 @@ editing of mask layouts, and verification such as
 @acronym{DRC, Design rule checking} and @acronym{LVS, Layout Versus 
Schematic}.")
     (license license:gpl3+)))
 
+(define-public python-liberty-parser
+  (package
+    (name "python-liberty-parser")
+    (version "0.0.27")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://codeberg.org/tok/liberty-parser";)
+             (commit version)))
+       (sha256
+        (base32 "0x8spiy4sxjma3dxvynax8hbzyxl90bgws00cqxazy95wyfbngar"))
+       (file-name (git-file-name name version))))
+    (build-system pyproject-build-system)
+    (propagated-inputs (list python-lark python-numpy python-sympy))
+    (native-inputs (list python-pytest python-setuptools))
+    (home-page "https://codeberg.org/tok/liberty-parser";)
+    (synopsis "Parser for Liberty timing libraries")
+    (description
+     "The @code{liberty-parser} Python library provides a parser
+and data structures for the Liberty format,
+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-pyucis
   (package
     (name "python-pyucis")

Reply via email to