depot/third_party/nixpkgs/pkgs/development/python-modules/scikit-rf/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

108 lines
1.9 KiB
Nix

{
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,
pytest-mock,
}:
buildPythonPackage rec {
pname = "scikit-rf";
version = "1.0.0";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "scikit-rf";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-TtRj9pqm5153y78MzhlVpL1EvNiNJyjUH1aOlAWU0WE=";
};
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
pytest-mock
nbval
matplotlib
pyvisa
openpyxl
networkx
];
checkInputs = [ pytestCheckHook ];
# test_calibration.py generates a divide by zero error on darwin
# https://github.com/scikit-rf/scikit-rf/issues/972
disabledTestPaths = lib.optional (
stdenv.isAarch64 && stdenv.isDarwin
) "skrf/calibration/tests/test_calibration.py";
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 ];
};
}