Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions python.nix
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@ let
# Nixpkgs has incorrect canonical naming
python-can = super.python-can or self.can;

# Upstream bug. Network tests for canopen-2.3.0 may fail due to fragile timing assumptions
canopen = super.canopen.overridePythonAttrs (old: {
doCheck = false;
});

# Nixpkgs puts imgtool in the top-level set as mcuboot-imgtool since 2024-10
imgtool =
if pkgs ? mcuboot-imgtool then pkgs.mcuboot-imgtool.override {
Expand Down
Loading