mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
25 lines
459 B
Nix
25 lines
459 B
Nix
{ 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 ];
|
|
};
|
|
|
|
}
|