depot/third_party/nixpkgs/pkgs/development/python-modules/scikit-rf/default.nix
Default email 5c370c0b2a Project import generated by Copybara.
GitOrigin-RevId: 33d1e753c82ffc557b4a585c77de43d4c922ebb5
2024-05-15 17:35:15 +02:00

121 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 ];
};
}