guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: Add python-diceware.


From: guix-commits
Subject: branch master updated: gnu: Add python-diceware.
Date: Mon, 13 Apr 2020 18:47:38 -0400

This is an automated email from the git hooks/post-receive script.

lfam pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new ab3ad88  gnu: Add python-diceware.
ab3ad88 is described below

commit ab3ad88ded0734401667f6fb4c927ce26c39ad2e
Author: Matthew Kraai <address@hidden>
AuthorDate: Mon Apr 13 14:55:50 2020 -0700

    gnu: Add python-diceware.
    
    * gnu/packages/python-xyz.scm (python-diceware): New public variables.
    
    Signed-off-by: Leo Famulari <address@hidden>
---
 gnu/packages/python-xyz.scm | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 8724056..a10bc46 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -75,6 +75,7 @@
 ;;; Copyright © 2020 Alexandros Theodotou <address@hidden>
 ;;; Copyright © 2020 Lars-Dominik Braun <address@hidden>
 ;;; Copyright © 2020 Alex ter Weele <address@hidden>
+;;; Copyright © 2020 Matthew Kraai <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -19498,3 +19499,27 @@ there are extensions that allow you to use it with 
other frameworks.")
 register external CLI commands via setuptools entry-points.")
     (home-page "https://github.com/click-contrib/click-plugins";)
     (license license:bsd-3)))
+
+(define-public python-diceware
+  (package
+    (name "python-diceware")
+    (version "0.9.6")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "diceware" version))
+       (sha256
+        (base32
+         "0klb0ysybzlh2wihvir82hgq62v0jjmlcqklwajyms7c0p529yby"))))
+    (build-system python-build-system)
+    (native-inputs
+     `(("python-coverage" ,python-coverage)
+       ("python-pytest" ,python-pytest)
+       ("python-pytest-runner" ,python-pytest-runner)))
+    (home-page "https://github.com/ulif/diceware/";)
+    (synopsis "Generates memorable passphrases")
+    (description "This package generates passphrases by concatenating words
+randomly picked from wordlists.  It supports several sources of
+randomness (including real life dice) and different wordlists (including
+cryptographically signed ones).")
+    (license license:gpl3+)))



reply via email to

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