mirror of
https://codeberg.org/guix/guix.git
synced 2026-01-25 03:55:08 -06:00
Compare commits
2 commits
2cfae15618
...
77ca0514ef
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
77ca0514ef | ||
|
|
8da29f8d95 |
1 changed files with 45 additions and 0 deletions
|
|
@ -2203,6 +2203,51 @@ programming language, as well as evaluation board definitions and a System on
|
||||||
Chip toolkit.")
|
Chip toolkit.")
|
||||||
(license license:bsd-3)))
|
(license license:bsd-3)))
|
||||||
|
|
||||||
|
(define-public gdstk
|
||||||
|
(package
|
||||||
|
(name "gdstk")
|
||||||
|
(version "0.9.62")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/heitzmann/gdstk")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(sha256
|
||||||
|
(base32 "0q07g7h613yqszgs49vbnran3pz6yayc0hyisdnp4fi60cyzsz1l"))
|
||||||
|
(file-name (git-file-name name version))))
|
||||||
|
(build-system cmake-build-system)
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
#:phases
|
||||||
|
#~(modify-phases %standard-phases
|
||||||
|
(add-before 'check 'build-examples
|
||||||
|
(lambda* (#:key tests? #:allow-other-keys)
|
||||||
|
(when tests?
|
||||||
|
(invoke "make" "examples")))))))
|
||||||
|
(inputs (list zlib qhull))
|
||||||
|
(home-page "https://heitzmann.github.io/gdstk/")
|
||||||
|
(synopsis "Library for creation and manipulation of GDSII files")
|
||||||
|
(description
|
||||||
|
"@code{gdstk} is a library for creation and manipulation of GDSII layout files
|
||||||
|
which are commonly used for @acronym{EDA, elecronic design automation} and chip design.")
|
||||||
|
(license license:boost1.0)))
|
||||||
|
|
||||||
|
(define-public python-gdstk
|
||||||
|
(package
|
||||||
|
(inherit gdstk)
|
||||||
|
(name "python-gdstk")
|
||||||
|
(build-system pyproject-build-system)
|
||||||
|
(arguments
|
||||||
|
'(#:tests? #f)) ;TODO fix tests
|
||||||
|
;; (propagated-inputs (list python-numpy python-typing-extensions))
|
||||||
|
(native-inputs (list cmake-minimal python-scikit-build-core))
|
||||||
|
(inputs (list zlib python-numpy qhull))
|
||||||
|
(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
|
(define-public python-klayout
|
||||||
(package
|
(package
|
||||||
(name "python-klayout")
|
(name "python-klayout")
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue