From mboxrd@z Thu Jan 1 00:00:00 1970 From: Hartmut Goebel Subject: [PATCH 1/4] gnu: Add python-pyte. Date: Sat, 31 Dec 2016 15:01:59 +0100 Message-ID: <1483192922-21411-1-git-send-email-h.goebel@crazy-compilers.com> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:47183) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cNKEd-000726-IR for guix-devel@gnu.org; Sat, 31 Dec 2016 09:02:12 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cNKEY-0004Nj-Me for guix-devel@gnu.org; Sat, 31 Dec 2016 09:02:11 -0500 Received: from mail-out.m-online.net ([212.18.0.10]:45710) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cNKEY-0004Mh-Gy for guix-devel@gnu.org; Sat, 31 Dec 2016 09:02:06 -0500 Received: from frontend01.mail.m-online.net (unknown [192.168.8.182]) by mail-out.m-online.net (Postfix) with ESMTP id 3trQ4r44k3z3hjcB for ; Sat, 31 Dec 2016 15:02:04 +0100 (CET) Received: from localhost (dynscan1.mnet-online.de [192.168.6.68]) by mail.m-online.net (Postfix) with ESMTP id 3trQ4r3RVwzvkXl for ; Sat, 31 Dec 2016 15:02:04 +0100 (CET) Received: from mail.mnet-online.de ([192.168.8.182]) by localhost (dynscan1.mail.m-online.net [192.168.6.68]) (amavisd-new, port 10024) with ESMTP id 6gaWdi5b5qU4 for ; Sat, 31 Dec 2016 15:02:03 +0100 (CET) Received: from hermia.goebel-consult.de (ppp-93-104-73-193.dynamic.mnet-online.de [93.104.73.193]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by mail.mnet-online.de (Postfix) with ESMTPS for ; Sat, 31 Dec 2016 15:02:03 +0100 (CET) Received: from thisbe.goebel-consult.de.fritz.box (thisbe.fritz.box [192.168.110.23]) by hermia.goebel-consult.de (Postfix) with ESMTP id 6E5DC60631 for ; Sat, 31 Dec 2016 15:02:02 +0100 (CET) List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org * gnu/packages/python.scm (python-pyte, python2-pyte): New variables. --- gnu/packages/python.scm | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index a0542a5..2dea03b 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -12278,3 +12278,32 @@ possible on all supported Python versions.") (define-public python2-xopen (package-with-python2 python-xopen)) + +(define-public python-pyte + (package + (name "python-pyte") + (version "0.5.2") + (source + (origin + (method url-fetch) + (uri (pypi-uri "pyte" version)) + (sha256 + (base32 + "0abmxrjlibplzzz7qm7dyphhdp171ssf2lqqllig4p83450cyd6p")))) + (build-system python-build-system) + (propagated-inputs + `(("python-wcwidth", python-wcwidth))) + (native-inputs + `(("python-pytest-runner" ,python-pytest-runner) + ("python-pytest" ,python-pytest))) + (home-page "https://pyte.readthedocs.io/") + (synopsis "Simple VTXXX-compatible terminal emulator") + (description "@code{pyte} is an in memory VTxxx-compatible terminal +emulator. @code{xxx} stands for a series of video terminals, developed by DEC +between 1970 and 1995. The first, and probably the most famous one, was VT100 +terminal, which is now a de-facto standard for all virtual terminal +emulators. pyte follows the suit.") + (license license:lgpl3))) + +(define-public python2-pyte + (package-with-python2 python-pyte)) -- 2.7.4