1{ stdenv
2, buildPythonPackage
3, fetchPypi
4, isPy3k
5}:
6
7buildPythonPackage rec {
8 pname = "slowaes";
9 version = "0.1a1";
10
11 src = fetchPypi {
12 inherit pname version;
13 sha256 = "83658ae54cc116b96f7fdb12fdd0efac3a4e8c7c7064e3fac3f4a881aa54bf09";
14 };
15
16 disabled = isPy3k;
17
18 meta = with stdenv.lib; {
19 homepage = "http://code.google.com/p/slowaes/";
20 description = "AES implemented in pure python";
21 license = with licenses; [ asl20 ];
22 };
23
24}