Skip to content

Commit

Permalink
pythonPackages.ptyprocess: fix stuck tests on darwin
Browse files Browse the repository at this point in the history
  • Loading branch information
bobrik committed Apr 10, 2021
1 parent 79aa808 commit ec0e1f0
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions pkgs/development/python-modules/ptyprocess/default.nix
@@ -1,6 +1,7 @@
{ lib
, buildPythonPackage
, fetchPypi
, fetchpatch
}:

buildPythonPackage rec {
Expand All @@ -12,6 +13,14 @@ buildPythonPackage rec {
sha256 = "5c5d0a3b48ceee0b48485e0c26037c0acd7d29765ca3fbb5cb3831d347423220";
};

patches = [
# Remove after https://github.com/pexpect/ptyprocess/pull/64 is merged.
(fetchpatch {
url = "https://github.com/pexpect/ptyprocess/commit/40c1ccf3432a6787be1801ced721540e34c6cd87.patch";
sha256 = "sha256-IemngBqBq3QRCmVscWtsuXHiFgvTOJIIB9SyAvsqHd0=";
})
];

meta = {
description = "Run a subprocess in a pseudo terminal";
homepage = "https://github.com/pexpect/ptyprocess";
Expand Down

0 comments on commit ec0e1f0

Please sign in to comment.