fixing issue with missing jsonschema for python#50
fixing issue with missing jsonschema for python#50ge0053 wants to merge 8 commits intonix-community:masterfrom
Conversation
| pythonEnv = callPackage ./python.nix { | ||
| inherit zephyr-src; | ||
| inherit pyproject-nix; | ||
| extraPackages=_ps : [python3Packages.jsonschema]; |
There was a problem hiding this comment.
Line 95 in 39661e3
|
Same issue here. The dependency
-- I was looking at the wrong rev, it should be https://github.com/zephyrproject-rtos/zephyr/tree/v4.1.0 and |
when building a project i get an error from python which cant find the module jsonschema:
west build -p always -b adi_eval_adin1110ebz zephyr/samples/basic/blinky CMake Error at zephyr/cmake/modules/boards.cmake:191 (message): Error finding board: adi_eval_adin1110ebz Error message: Traceback (most recent call last): File "zephyr/scripts/list_boards.py", line 13, in <module> import jsonschema ModuleNotFoundError: No module named 'jsonschema'it would also be possible to specify that it is a necessary package in the flake file.
Tested with the example flake with these additions: