The tests of spsdk time out on slower machines like thinknix. Disabling them via overlay to fix the system build. TODO: raise this upstream
		
			
				
	
	
		
			8 lines
		
	
	
	
		
			252 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			8 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; };
 | 
						|
    };
 | 
						|
  };
 | 
						|
}
 |