mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: wireviz: Migrate to pyproject-build-system.
* gnu/packages/engineering.scm (wireviz) [build-system]: Swap to pyproject-build-system. [arguments] <tests?>: Explicitly disable as project provides no tests. [inputs]: Add python-click, python-graphviz, python-pillow, and python-pyyaml. [propagated-inputs]: Remove python-click, python-graphviz, python-pillow, and python-pyyaml. [native-inputs]: Add python-setuptools and python-wheel. Change-Id: Icad23912b39eb9c4250bc67b1debba5b7fd9f523
This commit is contained in:
parent
129d8c4591
commit
b5fda7e4da
1 changed files with 11 additions and 3 deletions
|
@ -4256,9 +4256,17 @@ G-code instructions for FFF printers or PNG layers for mSLA 3D printers.")
|
|||
(uri (pypi-uri "wireviz" version))
|
||||
(sha256
|
||||
(base32 "1qbh0pknpymc42k4661b8ghbfk9him75xx57siyrl9is5s6as98f"))))
|
||||
(build-system python-build-system)
|
||||
(propagated-inputs
|
||||
(list python-click python-graphviz python-pillow python-pyyaml))
|
||||
(build-system pyproject-build-system)
|
||||
(arguments
|
||||
(list #:tests? #f)) ; no tests in git checkout or PyPI archive
|
||||
(native-inputs
|
||||
(list python-setuptools
|
||||
python-wheel))
|
||||
(inputs
|
||||
(list python-click
|
||||
python-graphviz
|
||||
python-pillow
|
||||
python-pyyaml))
|
||||
(home-page "https://github.com/wireviz/WireViz")
|
||||
(synopsis "Easily document cables and wiring harnesses")
|
||||
(description
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue