about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/slowaes/default.nix
blob: 5d738fea57e06e979ffb8659f60704ad8bf78a5d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ lib, stdenv
, buildPythonPackage
, fetchPypi
, isPy3k
}:

buildPythonPackage rec {
  pname = "slowaes";
  version = "0.1a1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "83658ae54cc116b96f7fdb12fdd0efac3a4e8c7c7064e3fac3f4a881aa54bf09";
  };

  disabled = isPy3k;

  meta = with lib; {
    homepage = "http://code.google.com/p/slowaes/";
    description = "AES implemented in pure python";
    license = with licenses; [ asl20 ];
  };

}