20 lines
500 B
Nix
20 lines
500 B
Nix
|
{ stdenv, buildPythonPackage, fetchPypi, six }:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "dockerpty";
|
||
|
version = "0.4.1";
|
||
|
|
||
|
src = fetchPypi {
|
||
|
inherit pname version;
|
||
|
sha256 = "1kjn64wx23jmr8dcc6g7bwlmrhfmxr77gh6iphqsl39sayfxdab9";
|
||
|
};
|
||
|
|
||
|
propagatedBuildInputs = [ six ];
|
||
|
|
||
|
meta = with stdenv.lib; {
|
||
|
description = "Functionality needed to operate the pseudo-tty (PTY) allocated to a docker container";
|
||
|
homepage = https://github.com/d11wtq/dockerpty;
|
||
|
license = licenses.asl20;
|
||
|
};
|
||
|
}
|