me
/
guix
Archived
1
0
Fork 0

gnu: Add python-pyaes.

* gnu/packages/python.scm (python-pyaes, python2-pyaes): New variables.
master
Carlo Zancanaro 2017-08-20 15:40:56 +10:00 committed by Thomas Danckaert
parent 07e62ae1c2
commit 7a276cd945
No known key found for this signature in database
GPG Key ID: 5C3B064C724A5726
1 changed files with 22 additions and 0 deletions

View File

@ -15987,3 +15987,25 @@ version of @code{SocksiPy} with bug fixes and extra features.")
(define-public python2-pysocks
(package-with-python2 python-pysocks))
(define-public python-pyaes
(package
(name "python-pyaes")
(version "1.6.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "pyaes" version))
(sha256
(base32
"0bp9bjqy1n6ij1zb86wz9lqa1dhla8qr1d7w2kxyn7jbj56sbmcw"))))
(build-system python-build-system)
(home-page "https://github.com/ricmoo/pyaes")
(synopsis "Implementation of AES in Python")
(description "This package contains a pure-Python implementation of the
AES block cipher algorithm and the common modes of operation (CBC, CFB, CTR,
ECB and OFB).")
(license license:expat)))
(define-public python2-pyaes
(package-with-python2 python-pyaes))