[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
07/13: gnu: Add python-pylibscrypt.
From: |
Nicolas Goaziou |
Subject: |
07/13: gnu: Add python-pylibscrypt. |
Date: |
Fri, 11 May 2018 05:54:58 -0400 (EDT) |
ngz pushed a commit to branch master
in repository guix.
commit c158d47627a868a6a8b1f20630b01296fbad0a65
Author: Nicolas Goaziou <address@hidden>
Date: Mon Apr 23 00:14:06 2018 +0200
gnu: Add python-pylibscrypt.
* gnu/packages/python-crypto.scm (python-pylibscrypt): New variable.
---
gnu/packages/python-crypto.scm | 23 +++++++++++++++++++++++
1 file changed, 23 insertions(+)
diff --git a/gnu/packages/python-crypto.scm b/gnu/packages/python-crypto.scm
index 1f5da02..b19364a 100644
--- a/gnu/packages/python-crypto.scm
+++ b/gnu/packages/python-crypto.scm
@@ -841,3 +841,26 @@ through the Engine interface.")
(define-public python2-m2crypto
(package-with-python2 python-m2crypto))
+
+(define-public python-pylibscrypt
+ (package
+ (name "python-pylibscrypt")
+ (version "1.7.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "pylibscrypt" version))
+ (sha256
+ (base32
+ "1b3rgzl6dbzs08vhv41b6y4n5189wv7lr27acxn104hs45745abs"))))
+ (build-system python-build-system)
+ (arguments
+ `(#:tests? #f)) ;FIXME: unable to find libraries
+ (inputs
+ `(("openssl" ,openssl)))
+ (home-page "https://github.com/jvarho/pylibscrypt")
+ (synopsis "Scrypt for Python")
+ (description "There are a lot of different scrypt modules for Python, but
+none of them have everything that I'd like, so here's one more. It uses
+hashlib.scrypt on Python 3.6 and OpenSSL 1.1.")
+ (license license:isc)))
- branch master updated (ef6a484 -> cb91f6a), Nicolas Goaziou, 2018/05/11
- 01/13: gnu: python-attrs: Update to 17.4.0., Nicolas Goaziou, 2018/05/11
- 03/13: gnu: Add python-pycares., Nicolas Goaziou, 2018/05/11
- 04/13: gnu: Add python-async-timeout., Nicolas Goaziou, 2018/05/11
- 09/13: gnu: Add python-aiodns., Nicolas Goaziou, 2018/05/11
- 07/13: gnu: Add python-pylibscrypt.,
Nicolas Goaziou <=
- 08/13: gnu: Add python-multidict., Nicolas Goaziou, 2018/05/11
- 10/13: gnu: Add python-yarl., Nicolas Goaziou, 2018/05/11
- 11/13: gnu: Add python-libnacl., Nicolas Goaziou, 2018/05/11
- 12/13: gnu: Add python-aiohttp., Nicolas Goaziou, 2018/05/11
- 13/13: gnu: Add python-duniterpy., Nicolas Goaziou, 2018/05/11
- 06/13: gnu: Add python-base58., Nicolas Goaziou, 2018/05/11
- 02/13: gnu: Add python-async-generator., Nicolas Goaziou, 2018/05/11
- 05/13: gnu: Add python-idna-ssl., Nicolas Goaziou, 2018/05/11