gnu: Add python-scikit-rf.

* gnu/packages/engineering.scm (python-scikit-rf): New variable.
This commit is contained in:
Vinicius Monego 2022-12-03 11:06:25 -03:00
parent e8ad02e706
commit 2a6cee99b3
No known key found for this signature in database
GPG key ID: 637B0B138065B68A

View file

@ -2384,6 +2384,42 @@ (define-public python-pyvisa
measurement devices and test equipment via GPIB, RS232, Ethernet or USB.")
(license license:expat)))
(define-public python-scikit-rf
(package
(name "python-scikit-rf")
(version "0.24.1")
(source (origin
(method git-fetch) ;PyPI misses some files required for tests
(uri (git-reference
(url "https://github.com/scikit-rf/scikit-rf")
(commit (string-append "v" version))))
(sha256
(base32
"1shp8q8324dkwf448mv9zzi7krx882p122ma4fk015qz91sg4wff"))
(file-name (git-file-name name version))))
(build-system pyproject-build-system)
(propagated-inputs (list python-matplotlib
python-networkx
python-numpy
python-openpyxl
python-pandas
python-pyqt
python-pyqtgraph
python-qtpy
python-scipy))
(native-inputs (list python-coverage
python-flake8
python-nbval
python-networkx
python-pytest-7.1
python-pytest-cov
python-pyvisa))
(home-page "https://scikit-rf.org/")
(synopsis "Radio frequency and Microwave Engineering Scikit")
(description "Scikit-rf, or @code{skrf}, is a Python package for RF and
Microwave engineering.")
(license license:bsd-3)))
(define-public openscad
(package
(name "openscad")