nixconfigs/packages/default.nix
Trolli Schmittlauch adc9daae84 python3Packages.spsdk: disable tests to unbreak pynitrokey
The tests of spsdk time out on slower machines like thinknix. Disabling them via overlay
to fix the system build.

TODO: raise this upstream
2024-07-07 19:08:32 +02:00

9 lines
252 B
Nix

final: prev: {
python3 = prev.python3.override {
packageOverrides = python-final: python-prev: {
# spsdk tests fail with timeout on old laptop thinknix
spsdk = python-prev.spsdk.overridePythonAttrs { doCheck = false; };
};
};
}