diff options
| author | Gabriel Wicki <gabriel@erlikon.ch> | 2026-01-15 16:52:20 +0100 |
|---|---|---|
| committer | Cayetano Santos <csantosb@inventati.org> | 2026-03-06 09:25:42 +0100 |
| commit | 78276ee606a2983205a9c6e1e9fdf7c424a2842a (patch) | |
| tree | b6ec5e9182619016cd7463c7059fb23afbba493e /gnu | |
| parent | 929d7f6a82e5e45884bedc5ab24fab5941f52295 (diff) | |
gnu: Add python-lln-libparse.
* gnu/packages/electronics.scm (python-lln-libparse): New variable.
Merges guix/guix!5641
Change-Id: Ic36e8902b12a75a8de32ac9bd1077475367bfd12
Signed-off-by: Cayetano Santos <csantosb@inventati.org>
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/electronics.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/electronics.scm b/gnu/packages/electronics.scm index 6f76cdc1fdb..f07253afb63 100644 --- a/gnu/packages/electronics.scm +++ b/gnu/packages/electronics.scm @@ -1253,6 +1253,31 @@ management with library, schematic and board editors.") (license (list license:expat ;libfst and fastlz-derived sources license:bsd-2))))) ;for lz4-derived sources +(define-public python-lln-libparse + (package + (name "python-lln-libparse") + (version "0.56.0") + (source (origin + (method url-fetch) + (uri (pypi-uri "lln_libparse" version)) + (sha256 + (base32 + "0b6srlpgrfs7hfapnzfhxyy9zzgxlk943s3y78jzq3cf656448kn")))) + (build-system pyproject-build-system) + (arguments + (list + #:tests? #f)); There are no tests. + (native-inputs + (list python-setuptools)) + (inputs + (list pybind11)) + (home-page "https://www.yosyshq.com/") + (synopsis "Wrapper around Yosys' libparse module") + (description "lln-libparse is a SWIG-based Python wrapper around Yosys' +libparse, enabling dotlib file parsing.") + (license license:asl2.0))) + + (define-public libpsf ;; There are no release nor tags. (let ((commit "001dc734e01725e739847c8cde6480a0cf35a082") |
