1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 21:20:33 +02:00

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>
This commit is contained in:
Thomas Kramer
2026-01-25 14:41:25 +00:00
committed by Cayetano Santos
parent e3fe03c5ed
commit 33209c4ff5

View File

@@ -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")