guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/01: gnu: Add python-onetimepass.


From: Tomas Cech
Subject: 01/01: gnu: Add python-onetimepass.
Date: Sat, 21 Apr 2018 02:34:05 -0400 (EDT)

sleep_walker pushed a commit to branch master
in repository guix.

commit 15ed90b96008e7c91f89c03854b49af05dd17e99
Author: Tomáš Čech <address@hidden>
Date:   Mon Apr 16 11:04:19 2018 +0200

    gnu: Add python-onetimepass.
    
    * gnu/packages/python.scm (python-onetimepass): New variable.
---
 gnu/packages/python.scm | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index ae6e38f..c033123 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -50,6 +50,7 @@
 ;;; Copyright © 2018 Vijayalakshmi Vedantham <address@hidden>
 ;;; Copyright © 2018 Mathieu Lirzin <address@hidden>
 ;;; Copyright © 2018 Adam Massmann <address@hidden>
+;;; Copyright © 2016, 2018 Tomáš Čech <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -13126,3 +13127,21 @@ 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 "One-time password library")
+    (description "Python one-time password library for HMAC-based (HOTP) and
+time-based (TOTP) passwords.")
+    (license license:expat)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]