diff options
| author | Thomas Kramer <thomas@f-si.org> | 2026-01-25 14:41:25 +0000 |
|---|---|---|
| committer | Cayetano Santos <csantosb@inventati.org> | 2026-01-28 10:21:26 +0100 |
| commit | 33209c4ff5ebb7aa5225f8f416474f388194e5ed (patch) | |
| tree | 9b3d6f572ce90cf7ffd257df8e1144e4ad0b9e84 /gnu | |
| parent | e3fe03c5ed44b5db1d850471fab98ea33fc95d6d (diff) | |
gnu: Add python-gdstk.
* gnu/packages/electronics.scm (python-gdstk): New variable
Merges guix/guix!5798
Change-Id: I00e6ae26aaf741acd24caceba6d3181ab83ed692
Signed-off-by: Cayetano Santos <csantosb@inventati.org>
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/electronics.scm | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/gnu/packages/electronics.scm b/gnu/packages/electronics.scm index a4f94ee29d..79f7e94c1f 100644 --- a/gnu/packages/electronics.scm +++ b/gnu/packages/electronics.scm @@ -2174,6 +2174,22 @@ programming language, as well as evaluation board definitions and a System on Chip toolkit.") (license license:bsd-3))) +(define-public python-gdstk + (package + (inherit gdstk) + (name "python-gdstk") + (build-system pyproject-build-system) + (arguments (list #:test-flags #~(list "."))) + (native-inputs (list cmake-minimal python-pytest python-minimal-wrapper + python-scikit-build-core)) + (inputs (modify-inputs (package-inputs gdstk) + (prepend python-numpy))) + (synopsis "Python module for creation and manipulation of GDSII files") + (description + "@code{python-gdstk} is a Python library for creation +and manipulation of GDSII layout files which are commonly used +for @acronym{EDA, elecronic design automation} and chip design."))) + (define-public python-klayout (package (name "python-klayout") |
