1{ lib
2, buildPythonPackage
3, fetchPypi
4}:
5
6buildPythonPackage rec {
7 pname = "ptyprocess";
8 version = "0.5.2";
9
10 src = fetchPypi {
11 inherit pname version;
12 sha256 = "e64193f0047ad603b71f202332ab5527c5e52aa7c8b609704fc28c0dc20c4365";
13 };
14
15 meta = {
16 description = "Run a subprocess in a pseudo terminal";
17 homepage = https://github.com/pexpect/ptyprocess;
18 license = lib.licenses.isc;
19 };
20}