From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:34367) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1f806J-0000by-TC for guix-patches@gnu.org; Mon, 16 Apr 2018 05:07:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1f806I-0006zf-TZ for guix-patches@gnu.org; Mon, 16 Apr 2018 05:07:03 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:47150) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1f806I-0006zR-Po for guix-patches@gnu.org; Mon, 16 Apr 2018 05:07:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1f806I-0007mN-Je for guix-patches@gnu.org; Mon, 16 Apr 2018 05:07:02 -0400 Subject: [bug#31173] [PATCH] gnu: Add python-onetimepass. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:33722) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1f805G-0000FQ-0r for guix-patches@gnu.org; Mon, 16 Apr 2018 05:05:59 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1f805E-00068b-Ss for guix-patches@gnu.org; Mon, 16 Apr 2018 05:05:58 -0400 Received: from fencepost.gnu.org ([2001:4830:134:3::e]:37539) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1f805E-00068K-Ox for guix-patches@gnu.org; Mon, 16 Apr 2018 05:05:56 -0400 From: =?UTF-8?Q?Tom=C3=A1=C5=A1_?= =?UTF-8?Q?=C4=8Cech?= Date: Mon, 16 Apr 2018 11:05:52 +0200 Message-Id: <20180416090552.14421-1-sleep_walker@gnu.org> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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: 31173@debbugs.gnu.org * gnu/packages/python.scm (python-onetimepass): New variable. --- gnu/packages/python.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index e5b74a57f..aedd30566 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -50,6 +50,7 @@ ;;; Copyright © 2018 Vijayalakshmi Vedantham ;;; Copyright © 2018 Mathieu Lirzin ;;; Copyright © 2018 Adam Massmann +;;; Copyright © 2016, 2018 Tomáš Čech ;;; ;;; This file is part of GNU Guix. ;;; @@ -13127,3 +13128,23 @@ file system events on Linux.") (description "Pybtex is a BibTeX-compatible bibliography processor written in Python. You can simply type pybtex instead of bibtex.") (license license:expat))) + +(define-public python-onetimepass + (package + (name "python-onetimepass") + (version "1.0.1") + (source + (origin + (method url-fetch) + (uri (pypi-uri "onetimepass" version)) + (sha256 + (base32 + "09vagxgbq78wvq4xbikmn2hpqqsa2i96kqsmphf7dqynfv0dlsd5")))) + (build-system python-build-system) + (inputs + `(("python-six" ,python-six))) + (home-page "https://github.com/tadeck/onetimepass/") + (synopsis "Python one-time password library") + (description "Pyhton one-time password library for HMAC-based (HOTP) and +time-based (TOTP) passwords.") + (license license:x11))) -- 2.16.3