update flake file #45

Merged
aaron merged 2 commits from feature/updates into main 2026-04-29 09:22:55 +02:00
Owner
  • update flake and update to linux 7.0
- update flake and update to linux 7.0
Author
Owner

Currently the build fails while compiling pyqtgraph-0.14.0. Waiting for this to be resolved.

┏━ 11 Errors:
 ⋮
┃        Reason: 1 dependency failed.
┃        Output paths:
┃          /nix/store/iiwkj860skyfwzfbr52bm36kgs6mm6cb-python3-3.13.12-env
┃ error: Cannot build '/nix/store/gmixxancb9mfyz3qvyf0mqgxrgdr2gbl-gnuradio-3.10.12.0.drv'.
┃        Reason: 1 dependency failed.
┃        Output paths:
┃          /nix/store/g20rvm8xd2v03gajs5fa17p7avmscj37-gnuradio-3.10.12.0
┃          /nix/store/nl5ilak6gjg944cgmdz30kgif9xbawd3-gnuradio-3.10.12.0-man
┃ error: Cannot build '/nix/store/3n42mzybn6p6y6gxpgwn5iyf5m00dsb8-python3.13-pyqtgraph-0.14.0.drv'.
┃        Reason: builder failed with exit code 1.
┃        Output paths:
┃          /nix/store/41cr0a8sacgmvikim40g6imbg5b13llv-python3.13-pyqtgraph-0.14.0-dist
┃          /nix/store/r9g95x0fsiz974s8m1r7xd4k1vi6m10d-python3.13-pyqtgraph-0.14.0
┃        Last 25 log lines:
┃        >             removeTransform = False
┃        >             for ch in grp.childNodes:
┃        >                 if not isinstance(ch, xml.Element):
┃        >                     continue
┃        >                 if ch.tagName == 'polyline':
┃        >                     removeTransform = True
┃        >                     coords = np.array([[float(a) for a in c.split(',')] for c in ch.getAttribute('points').strip().split(' ')])
┃        >                     coords = fn.transformCoordinates(tr, coords, transpose=True)
┃        >                     ch.setAttribute('points', ' '.join([','.join([str(a) for a in c]) for c in coords]))
┃        >                 elif ch.tagName == 'path':
┃        >                     removeTransform = True
┃        >                     newCoords = ''
┃        >                     oldCoords = ch.getAttribute('d').strip()
┃        >                     if oldCoords == '':
┃        >                         continue
┃        >                     for c in oldCoords.split(' '):
┃        > >                       x,y = c.split(',')
┃        >                         ^^^
┃        > E                       ValueError: not enough values to unpack (expected 2, got 1)
┃        >
┃        > pyqtgraph/exporters/SVGExporter.py:427: ValueError
┃        > =========================== short test summary info ============================
┃        > FAILED tests/exporters/test_svg.py::test_plotscene - ValueError: not enough values to unpack (expected 2, got 1)
┃        > FAILED tests/exporters/test_svg.py::test_simple - ValueError: not enough values to unpack (expected 2, got 1)
┃        > ==== 2 failed, 1071 passed, 708 skipped, 12 deselected, 8 xfailed in 9.50s =====
┃        For full logs, run:
┃          nix log /nix/store/3n42mzybn6p6y6gxpgwn5iyf5m00dsb8-python3.13-pyqtgraph-0.14.0.drv

Currently the build fails while compiling pyqtgraph-0.14.0. Waiting for this to be resolved. ``` ┏━ 11 Errors: ⋮ ┃ Reason: 1 dependency failed. ┃ Output paths: ┃ /nix/store/iiwkj860skyfwzfbr52bm36kgs6mm6cb-python3-3.13.12-env ┃ error: Cannot build '/nix/store/gmixxancb9mfyz3qvyf0mqgxrgdr2gbl-gnuradio-3.10.12.0.drv'. ┃ Reason: 1 dependency failed. ┃ Output paths: ┃ /nix/store/g20rvm8xd2v03gajs5fa17p7avmscj37-gnuradio-3.10.12.0 ┃ /nix/store/nl5ilak6gjg944cgmdz30kgif9xbawd3-gnuradio-3.10.12.0-man ┃ error: Cannot build '/nix/store/3n42mzybn6p6y6gxpgwn5iyf5m00dsb8-python3.13-pyqtgraph-0.14.0.drv'. ┃ Reason: builder failed with exit code 1. ┃ Output paths: ┃ /nix/store/41cr0a8sacgmvikim40g6imbg5b13llv-python3.13-pyqtgraph-0.14.0-dist ┃ /nix/store/r9g95x0fsiz974s8m1r7xd4k1vi6m10d-python3.13-pyqtgraph-0.14.0 ┃ Last 25 log lines: ┃ > removeTransform = False ┃ > for ch in grp.childNodes: ┃ > if not isinstance(ch, xml.Element): ┃ > continue ┃ > if ch.tagName == 'polyline': ┃ > removeTransform = True ┃ > coords = np.array([[float(a) for a in c.split(',')] for c in ch.getAttribute('points').strip().split(' ')]) ┃ > coords = fn.transformCoordinates(tr, coords, transpose=True) ┃ > ch.setAttribute('points', ' '.join([','.join([str(a) for a in c]) for c in coords])) ┃ > elif ch.tagName == 'path': ┃ > removeTransform = True ┃ > newCoords = '' ┃ > oldCoords = ch.getAttribute('d').strip() ┃ > if oldCoords == '': ┃ > continue ┃ > for c in oldCoords.split(' '): ┃ > > x,y = c.split(',') ┃ > ^^^ ┃ > E ValueError: not enough values to unpack (expected 2, got 1) ┃ > ┃ > pyqtgraph/exporters/SVGExporter.py:427: ValueError ┃ > =========================== short test summary info ============================ ┃ > FAILED tests/exporters/test_svg.py::test_plotscene - ValueError: not enough values to unpack (expected 2, got 1) ┃ > FAILED tests/exporters/test_svg.py::test_simple - ValueError: not enough values to unpack (expected 2, got 1) ┃ > ==== 2 failed, 1071 passed, 708 skipped, 12 deselected, 8 xfailed in 9.50s ===== ┃ For full logs, run: ┃ nix log /nix/store/3n42mzybn6p6y6gxpgwn5iyf5m00dsb8-python3.13-pyqtgraph-0.14.0.drv ```
aaron added 1 commit 2026-04-29 08:56:41 +02:00
aaron force-pushed feature/updates from 014780f2b4 to 56231797cc 2026-04-29 08:56:41 +02:00 Compare
aaron added 1 commit 2026-04-29 09:20:39 +02:00
aaron merged commit 738dc4d8bd into main 2026-04-29 09:22:55 +02:00
Sign in to join this conversation.
No Reviewers
No Label
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: aaron/nixconfig#45