From 5f60f1d7668f585129d0e17d36d83b8f8623d680 Mon Sep 17 00:00:00 2001 From: David Thompson Date: Mon, 11 Jan 2016 13:35:51 -0500 Subject: [PATCH 7/8] gnu: Add python-dockerpty. * gnu/packages/docker.scm (python-dockerpty): New variable. --- gnu/packages/docker.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/gnu/packages/docker.scm b/gnu/packages/docker.scm index 2d1eecc..8f2311b 100644 --- a/gnu/packages/docker.scm +++ b/gnu/packages/docker.scm @@ -49,3 +49,24 @@ (synopsis "Python client for Docker") (description "Docker-Py is a Python client for Docker.") (license license:asl2.0))) + +(define-public python-dockerpty + (package + (name "python-dockerpty") + (version "0.3.4") + (source + (origin + (method url-fetch) + (uri (pypi-uri "dockerpty" version)) + (sha256 + (base32 + "0za6rr349641wv76ww9l3zcic2xyxrirlxpnzl4296h897648455")))) + (build-system python-build-system) + (native-inputs + `(("python-six" ,python-six))) + (home-page "https://github.com/d11wtq/dockerpty") + (synopsis "Python library to use the pseudo-TTY of a Docker container") + (description "Docker PTY provides the functionality needed to operate the +pseudo-terminal (PTY) allocated to a Docker container using the Python +client.") + (license license:asl2.0))) -- 2.6.3