pythonPackages.dockerpty: Move to own file
This commit is contained in:
committed by
Frederik Rietdijk
parent
1be2158445
commit
a919c28d0a
19
pkgs/development/python-modules/dockerpty/default.nix
Normal file
19
pkgs/development/python-modules/dockerpty/default.nix
Normal file
@@ -0,0 +1,19 @@
|
||||
{ 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;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user