python3Packages.scikit-rf: init at 0.25.0
This commit is contained in:
parent
4805cb0934
commit
ccad0e955d
2 changed files with 115 additions and 0 deletions
113
pkgs/development/python-modules/scikit-rf/default.nix
Normal file
113
pkgs/development/python-modules/scikit-rf/default.nix
Normal file
|
@ -0,0 +1,113 @@
|
||||||
|
{ stdenv
|
||||||
|
, lib
|
||||||
|
, pythonOlder
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchFromGitHub
|
||||||
|
, numpy
|
||||||
|
, scipy
|
||||||
|
, pandas
|
||||||
|
, matplotlib
|
||||||
|
, tox
|
||||||
|
, coverage
|
||||||
|
, flake8
|
||||||
|
, nbval
|
||||||
|
, pyvisa
|
||||||
|
, networkx
|
||||||
|
, ipython
|
||||||
|
, ipykernel
|
||||||
|
, ipywidgets
|
||||||
|
, jupyter-client
|
||||||
|
, sphinx-rtd-theme
|
||||||
|
, sphinx
|
||||||
|
, nbsphinx
|
||||||
|
, openpyxl
|
||||||
|
, qtpy
|
||||||
|
, pyqtgraph
|
||||||
|
, pyqt5
|
||||||
|
, setuptools
|
||||||
|
, pytestCheckHook
|
||||||
|
, pytest-cov
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "scikit-rf";
|
||||||
|
version = "0.25.0";
|
||||||
|
format = "pyproject";
|
||||||
|
|
||||||
|
disabled = pythonOlder "3.7";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "scikit-rf";
|
||||||
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
hash = "sha256-drH1N1rKFu/zdLmLsD1jH5xUkzK37V/+nJqGQ38vsTI=";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
setuptools
|
||||||
|
];
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
numpy
|
||||||
|
scipy
|
||||||
|
pandas
|
||||||
|
];
|
||||||
|
|
||||||
|
passthru.optional-dependencies = {
|
||||||
|
plot = [
|
||||||
|
matplotlib
|
||||||
|
];
|
||||||
|
xlsx = [
|
||||||
|
openpyxl
|
||||||
|
];
|
||||||
|
netw = [
|
||||||
|
networkx
|
||||||
|
];
|
||||||
|
visa = [
|
||||||
|
pyvisa
|
||||||
|
];
|
||||||
|
docs = [
|
||||||
|
ipython
|
||||||
|
ipykernel
|
||||||
|
ipywidgets
|
||||||
|
jupyter-client
|
||||||
|
sphinx-rtd-theme
|
||||||
|
sphinx
|
||||||
|
nbsphinx
|
||||||
|
openpyxl
|
||||||
|
];
|
||||||
|
qtapps = [
|
||||||
|
qtpy
|
||||||
|
pyqtgraph
|
||||||
|
pyqt5
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeCheckInputs = [
|
||||||
|
tox
|
||||||
|
coverage
|
||||||
|
flake8
|
||||||
|
pytest-cov
|
||||||
|
nbval
|
||||||
|
matplotlib
|
||||||
|
pyvisa
|
||||||
|
openpyxl
|
||||||
|
networkx
|
||||||
|
];
|
||||||
|
|
||||||
|
checkInputs = [
|
||||||
|
pytestCheckHook
|
||||||
|
];
|
||||||
|
|
||||||
|
pythonImportsCheck = [
|
||||||
|
"skrf"
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "A Python library for RF/Microwave engineering";
|
||||||
|
homepage = "https://scikit-rf.org/";
|
||||||
|
changelog = "https://github.com/scikit-rf/scikit-rf/releases/tag/v${version}";
|
||||||
|
license = licenses.bsd3;
|
||||||
|
maintainers = with maintainers; [ lugarun ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -10463,6 +10463,8 @@ self: super: with self; {
|
||||||
|
|
||||||
scikit-optimize = callPackage ../development/python-modules/scikit-optimize { };
|
scikit-optimize = callPackage ../development/python-modules/scikit-optimize { };
|
||||||
|
|
||||||
|
scikit-rf = callPackage ../development/python-modules/scikit-rf { };
|
||||||
|
|
||||||
scikits-odes = callPackage ../development/python-modules/scikits-odes { };
|
scikits-odes = callPackage ../development/python-modules/scikits-odes { };
|
||||||
|
|
||||||
scikit-tda = callPackage ../development/python-modules/scikit-tda { };
|
scikit-tda = callPackage ../development/python-modules/scikit-tda { };
|
||||||
|
|
Loading…
Reference in a new issue