python3Packages.pyliblo3: add patch to fix cython compilation failure (#441800)

authored by Peder Bergebakken Sundt and committed by GitHub 6653b1ab d8947826

+10
+10
pkgs/development/python-modules/pyliblo3/default.nix
··· 2 lib, 3 buildPythonPackage, 4 fetchFromGitHub, 5 setuptools, 6 python, 7 liblo, ··· 19 tag = "v${version}"; 20 hash = "sha256-QfwZXkUT4U2Gfbv3rk0F/bze9hwJGn7H8t0X1SWqIuc="; 21 }; 22 23 build-system = [ 24 setuptools
··· 2 lib, 3 buildPythonPackage, 4 fetchFromGitHub, 5 + fetchpatch2, 6 setuptools, 7 python, 8 liblo, ··· 20 tag = "v${version}"; 21 hash = "sha256-QfwZXkUT4U2Gfbv3rk0F/bze9hwJGn7H8t0X1SWqIuc="; 22 }; 23 + 24 + patches = [ 25 + # https://github.com/NixOS/nixpkgs/issues/437077 26 + (fetchpatch2 { 27 + name = "fix-compilation-for-cython-3.1.2"; 28 + url = "https://github.com/gesellkammer/pyliblo3/commit/baa249acf91bcb851aa4e30e53e88728fe0fb0c9.patch?full_index=1"; 29 + hash = "sha256-fMKBVIZLBq62khhX40tpaM47nuHB0eqiURIul/4LMig="; 30 + }) 31 + ]; 32 33 build-system = [ 34 setuptools