My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/dockerpty/default.nix

19 lines
492 B

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