gogdl: apply upstream PR patch for timeouts issue

+8
+8
pkgs/games/gogdl/default.nix
··· 1 { lib 2 , writeScript 3 , buildPythonApplication 4 , fetchFromGitHub ··· 25 propagatedBuildInputs = [ 26 setuptools 27 requests 28 ]; 29 30 pythonImportsCheck = [ "gogdl" ];
··· 1 { lib 2 + , fetchpatch 3 , writeScript 4 , buildPythonApplication 5 , fetchFromGitHub ··· 26 propagatedBuildInputs = [ 27 setuptools 28 requests 29 + ]; 30 + 31 + patches = [ 32 + (fetchpatch { 33 + url = "https://patch-diff.githubusercontent.com/raw/Heroic-Games-Launcher/heroic-gogdl/pull/37.patch"; 34 + hash = "sha256-oZLetPoWzsEDrL0Bh89HB4hTn70FTh8aXj9mKGr4Dqw="; 35 + }) 36 ]; 37 38 pythonImportsCheck = [ "gogdl" ];