From 4e2a7cc12fe578f2631ee2f4f40e402e9eaa58f7 Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Wed, 6 Jan 2021 21:22:55 +0200 Subject: [PATCH] gnu: python-curtsies: Update to 0.3.4. * gnu/packages/terminals.scm (python-curtsies): Update to 0.3.4. [home-page]: Update to new home-page. (python2-curtsies): Remove variable. --- gnu/packages/terminals.scm | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/gnu/packages/terminals.scm b/gnu/packages/terminals.scm index b313c806cb..74e1937bbc 100644 --- a/gnu/packages/terminals.scm +++ b/gnu/packages/terminals.scm @@ -1,5 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2015, 2016, 2017, 2018, 2019, 2020 Efraim Flashner +;;; Copyright © 2015, 2016, 2017, 2018, 2019, 2020, 2021 Efraim Flashner ;;; Copyright © 2016 Mckinley Olsen ;;; Copyright © 2016, 2017, 2019 Alex Griffin ;;; Copyright © 2016 David Craven @@ -932,14 +932,14 @@ (define-public python2-blessings (define-public python-curtsies (package (name "python-curtsies") - (version "0.2.11") + (version "0.3.4") (source (origin (method url-fetch) (uri (pypi-uri "curtsies" version)) (sha256 (base32 - "1vljmw3sy6lrqahhpyg4gk13mzcx3mwhvg8s41698ms3cpgkjipc")))) + "019bpf5wmng4f6ic2ykg893ypfihpfvzi6dhblcagfwbincl79ac")))) (build-system python-build-system) (arguments `(#:phases @@ -954,7 +954,7 @@ (define-public python-curtsies `(("python-mock" ,python-mock) ("python-pyte" ,python-pyte) ("python-nose" ,python-nose))) - (home-page "https://github.com/thomasballinger/curtsies") + (home-page "https://github.com/bpython/curtsies") (synopsis "Library for curses-like terminal interaction with colored strings") (description "Curtsies is a Python library for interacting with the @@ -962,9 +962,6 @@ (define-public python-curtsies per-line fullscreen terminal rendering, and keyboard input event reporting.") (license license:expat))) -(define-public python2-curtsies - (package-with-python2 python-curtsies)) - (define-public tmate (package (name "tmate")