From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:54844) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jIkHo-0003Vl-AZ for guix-patches@gnu.org; Sun, 29 Mar 2020 22:36:25 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jIkHm-0003W4-Vs for guix-patches@gnu.org; Sun, 29 Mar 2020 22:36:24 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:48633) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1jIkHm-0003Vr-SR for guix-patches@gnu.org; Sun, 29 Mar 2020 22:36:22 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jIkHm-0004gx-PR for guix-patches@gnu.org; Sun, 29 Mar 2020 22:36:22 -0400 Subject: [bug#40318] [PATCH] gnu: Add tuir. Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:42000) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jIaBE-000788-Ru for guix-patches@gnu.org; Sun, 29 Mar 2020 11:48:58 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jIaBD-0006jK-O2 for guix-patches@gnu.org; Sun, 29 Mar 2020 11:48:56 -0400 Received: from flashner.co.il ([178.62.234.194]:60256) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1jIaBD-0006iS-IK for guix-patches@gnu.org; Sun, 29 Mar 2020 11:48:55 -0400 From: Efraim Flashner Date: Sun, 29 Mar 2020 17:23:00 +0300 Message-Id: <20200329142300.26328-1-efraim@flashner.co.il> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 40318@debbugs.gnu.org Cc: Efraim Flashner * gnu/packages/syndication.scm (tuir): New variable. --- gnu/packages/syndication.scm | 41 +++++++++++++++++++++++++++++++++++- 1 file changed, 40 insertions(+), 1 deletion(-) diff --git a/gnu/packages/syndication.scm b/gnu/packages/syndication.scm index a84281364f..7e62636835 100644 --- a/gnu/packages/syndication.scm +++ b/gnu/packages/syndication.scm @@ -1,5 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU -;;; Copyright =C2=A9 2016, 2017, 2019 Efraim Flashner +;;; Copyright =C2=A9 2016, 2017, 2019, 2020 Efraim Flashner ;;; Copyright =C2=A9 2018, 2019 Tobias Geerinckx-Rice ;;; ;;; This file is part of GNU Guix. @@ -136,3 +136,42 @@ It started life as a fork of the currently unmaintai= ned Newsbeuter.") "RTV provides a text-based interface to view and interact with Redd= it.") (license (list license:expat license:gpl3+)))) ; rtv/packages/praw + +(define-public tuir + (package + (name "tuir") + (version "1.28.3") + (source + (origin + (method url-fetch) + (uri (pypi-uri "tuir" version)) + (sha256 + (base32 + "1gpyjrl7jdfjq30m32nzh59ajv91gq19l93jjri2wsv5yrf90hdr")))) + (build-system python-build-system) + (arguments + `(#:phases + (modify-phases %standard-phases + (replace 'check + (lambda* (#:key inputs outputs #:allow-other-keys) + (add-installed-pythonpath inputs outputs) + (invoke "py.test" "-v")))))) + (propagated-inputs + `(("python-beautifulsoup4" ,python-beautifulsoup4) + ("python-decorator" ,python-decorator) + ("python-kitchen" ,python-kitchen) + ("python-requests" ,python-requests) + ("python-six" ,python-six))) + (native-inputs + `(("python-coverage" ,python-coverage) + ("python-coveralls" ,python-coveralls) + ("python-mock" ,python-mock) + ("python-pylint" ,python-pylint) + ("python-pytest" ,python-pytest) + ("python-vcrpy" ,python-vcrpy))) + (home-page "https://gitlab.com/ajak/tuir") + (synopsis "Terminal viewer for Reddit (Terminal UI for Reddit)") + (description + "Tuir provides a simple terminal viewer for Reddit (Terminal UI for= Reddit).") + (license (list license:expat + license:gpl3+)))) ; tuir/packages/praw --=20 2.26.0