[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
05/06: gnu: Add python-privy.
From: |
guix-commits |
Subject: |
05/06: gnu: Add python-privy. |
Date: |
Sun, 22 Mar 2020 04:18:58 -0400 (EDT) |
efraim pushed a commit to branch master
in repository guix.
commit 0a124c4615bd150c36dd90c2595942b79dabef6e
Author: Efraim Flashner <address@hidden>
AuthorDate: Tue Mar 17 09:03:55 2020 +0200
gnu: Add python-privy.
* gnu/packages/python-crypto.scm (python-privy): New variable.
---
gnu/packages/python-crypto.scm | 35 +++++++++++++++++++++++++++++++++++
1 file changed, 35 insertions(+)
diff --git a/gnu/packages/python-crypto.scm b/gnu/packages/python-crypto.scm
index f160421..0601799 100644
--- a/gnu/packages/python-crypto.scm
+++ b/gnu/packages/python-crypto.scm
@@ -1347,3 +1347,38 @@ I/O-free core, and integration modules for different
event loops.")
both a configurable runtime as well as memory consumption. This means that you
can decide how long it takes to hash a password and how much memory is
required.")
(license license:expat)))
+
+(define-public python-privy
+ (package
+ (name "python-privy")
+ (version "6.0.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ ;; Releases are untagged
+ (url "https://github.com/ofek/privy")
+ (commit "2838db3df239797c71bddacc48a4c49a83f35747")))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1m32dh5fqc8cy7jyf1z5fs6zvmdkbq5fi98hr609gbl7s0l0y0i9"))))
+ (build-system python-build-system)
+ (arguments
+ '(#:phases
+ (modify-phases %standard-phases
+ (replace 'check
+ (lambda _
+ (invoke "python" "-m" "pytest"))))))
+ (native-inputs
+ `(("python-pytest" ,python-pytest)))
+ (propagated-inputs
+ `(("python-argon2-cffi" ,python-argon2-cffi)
+ ("python-cryptography" ,python-cryptography)))
+ (home-page "https://www.dropbox.com/developers")
+ (synopsis "Library to password-protect your data")
+ (description
+ "Privy is a small and fast utility for password-protecting secret
+data such as API keys, cryptocurrency wallets, or seeds for digital
+signatures.")
+ (license (list license:expat license:asl2.0)))) ; dual licensed
- branch master updated (10d3fbf -> 34bf3ed), guix-commits, 2020/03/22
- 03/06: gnu: Add python-userspacefs., guix-commits, 2020/03/22
- 05/06: gnu: Add python-privy.,
guix-commits <=
- 02/06: gnu: Add python-fusepyng., guix-commits, 2020/03/22
- 01/06: gnu: Add python-keyrings.alt., guix-commits, 2020/03/22
- 06/06: gnu: Add python-block-tracing., guix-commits, 2020/03/22
- 04/06: gnu: Add python-argon2-cffi., guix-commits, 2020/03/22