summary refs log blame commit diff
path: root/pkgs/development/python-modules/slowaes/default.nix
blob: f9175e507b46311ab18af667752744e977655a77 (plain) (tree)























                                                                                
{ stdenv
, buildPythonPackage
, fetchPypi
, isPy3k
}:

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

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

  disabled = isPy3k;

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

}