1{ stdenv, fetchurl, buildPythonPackage }:
2
3buildPythonPackage rec {
4 name = "slowaes-0.1a1";
5
6 src = fetchurl {
7 url = "https://pypi.python.org/packages/source/s/slowaes/${name}.tar.gz";
8 sha256 = "83658ae54cc116b96f7fdb12fdd0efac3a4e8c7c7064e3fac3f4a881aa54bf09";
9 };
10
11 meta = {
12 homepage = "http://code.google.com/p/slowaes/";
13 description = "AES implemented in pure python";
14 license = stdenv.lib.licenses.asl20;
15 };
16}