1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 six,
6}:
7
8buildPythonPackage rec {
9 pname = "dockerpty";
10 version = "0.4.1";
11 format = "setuptools";
12
13 src = fetchPypi {
14 inherit pname version;
15 sha256 = "1kjn64wx23jmr8dcc6g7bwlmrhfmxr77gh6iphqsl39sayfxdab9";
16 };
17
18 propagatedBuildInputs = [ six ];
19
20 meta = with lib; {
21 description = "Functionality needed to operate the pseudo-tty (PTY) allocated to a docker container";
22 homepage = "https://github.com/d11wtq/dockerpty";
23 license = licenses.asl20;
24 };
25}