lol

pythonPackages.ptyprocess: fix stuck tests on darwin (#118948)

authored by

Ivan Babrou and committed by
GitHub
66d1da7e 6c449864

+9
+9
pkgs/development/python-modules/ptyprocess/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchPypi 4 + , fetchpatch 4 5 }: 5 6 6 7 buildPythonPackage rec { ··· 11 12 inherit pname version; 12 13 sha256 = "5c5d0a3b48ceee0b48485e0c26037c0acd7d29765ca3fbb5cb3831d347423220"; 13 14 }; 15 + 16 + patches = [ 17 + # Remove after https://github.com/pexpect/ptyprocess/pull/64 is merged. 18 + (fetchpatch { 19 + url = "https://github.com/pexpect/ptyprocess/commit/40c1ccf3432a6787be1801ced721540e34c6cd87.patch"; 20 + sha256 = "sha256-IemngBqBq3QRCmVscWtsuXHiFgvTOJIIB9SyAvsqHd0="; 21 + }) 22 + ]; 14 23 15 24 meta = { 16 25 description = "Run a subprocess in a pseudo terminal";