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
This commit is contained in:
Trolli Schmittlauch 2024-07-07 19:08:32 +02:00
parent 3cf7bb9fd5
commit adc9daae84

View file

@ -1 +1,8 @@
final: prev: { }
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; };
};
};
}