python310Packages.scikit-rf 0 -> 1 attrpath: python310Packages.scikit-rf Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/shd7z5z5mmdpg35bn1pqkdd5dc6rr6qx-packages.json.drv building '/nix/store/shd7z5z5mmdpg35bn1pqkdd5dc6rr6qx-packages.json.drv'... Going to be running update for following packages: - python3.10-scikit-rf-0.29.1 Press Enter key to continue... Running update for: - python3.10-scikit-rf-0.29.1: UPDATING ... - python3.10-scikit-rf-0.29.1: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/scikit-rf/default.nix b/pkgs/development/python-modules/scikit-rf/default.nix index a2cf6d82a35b..6ab88fea48b8 100644 --- a/pkgs/development/python-modules/scikit-rf/default.nix +++ b/pkgs/development/python-modules/scikit-rf/default.nix @@ -32,7 +32,7 @@ buildPythonPackage rec { pname = "scikit-rf"; - version = "0.29.1"; + version = "0.30.0"; pyproject = true; disabled = pythonOlder "3.7"; @@ -41,7 +41,7 @@ buildPythonPackage rec { owner = "scikit-rf"; repo = pname; rev = "refs/tags/v${version}"; - hash = "sha256-sLE6rcBGUKmk5y7oO06rHON3GVIjcvnKlr6Tgddj64Y="; + hash = "sha256-rJjuraiTvCmZgz8ysFBbYPowkLIuwt8RaFNl+gDSfLk="; }; buildInputs = [ No auto update branch exists Old version 0.29.1" not present in staging derivation file with contents: { 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 = "0.30.0"; pyproject = true; disabled = pythonOlder "3.7"; src = fetchFromGitHub { owner = "scikit-rf"; repo = pname; rev = "refs/tags/v${version}"; hash = "sha256-rJjuraiTvCmZgz8ysFBbYPowkLIuwt8RaFNl+gDSfLk="; }; 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 ]; }; }