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