From mboxrd@z Thu Jan 1 00:00:00 1970 From: Carlo Zancanaro Subject: [PATCH 3/4] gnu: Add python2-slowaes Date: Tue, 3 Jan 2017 00:32:37 +1100 Message-ID: <20170102133238.17811-4-carlo@zancanaro.id.au> References: <20170102133238.17811-1-carlo@zancanaro.id.au> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:48004) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cO2jO-00037e-8w for guix-devel@gnu.org; Mon, 02 Jan 2017 08:32:55 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cO2jN-00026V-3y for guix-devel@gnu.org; Mon, 02 Jan 2017 08:32:54 -0500 Received: from mail-pg0-x244.google.com ([2607:f8b0:400e:c05::244]:33202) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1cO2jM-000268-VQ for guix-devel@gnu.org; Mon, 02 Jan 2017 08:32:53 -0500 Received: by mail-pg0-x244.google.com with SMTP id g1so30487261pgn.0 for ; Mon, 02 Jan 2017 05:32:52 -0800 (PST) Received: from localhost.localdomain (14-200-183-160.static.tpgi.com.au. [14.200.183.160]) by smtp.gmail.com with ESMTPSA id u124sm78466931pgb.6.2017.01.02.05.32.50 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Mon, 02 Jan 2017 05:32:51 -0800 (PST) In-Reply-To: <20170102133238.17811-1-carlo@zancanaro.id.au> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org * gnu/packages/python.scm (python2-slowaes): New variable. --- gnu/packages/python.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 9afb2f0b1..eb238fc1e 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -12317,3 +12317,25 @@ Library (PIL) by default, to generate QR Codes.") (define-public python2-qrcode (package-with-python2 python-qrcode)) + +;; SlowAES isn't compatible with Python 3. +(define-public python2-slowaes + (package + (name "python-slowaes") + (version "0.1a1") + (source + (origin + (method url-fetch) + (uri (pypi-uri "slowaes" version)) + (sha256 + (base32 + "02dzajm83a7lqgxf6r3hgj64wfmcxz8gs4nvgxpvj5n19kjqlrc3")))) + (build-system python-build-system) + (arguments `(#:python ,python-2)) + (propagated-inputs + `(("python-setuptools" ,python-setuptools))) + (home-page "http://code.google.com/p/slowaes/") + (synopsis "Implementation of AES in Python") + (description "This module implements the AES encryption algorithm in +python.") + (license license:asl2.0))) -- 2.11.0