linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / slowaes / default.nix
blobddca8509744d6a36eb88df44aa839ac514e78936
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , isPy3k
5 }:
7 buildPythonPackage rec {
8   pname = "slowaes";
9   version = "0.1a1";
11   src = fetchPypi {
12     inherit pname version;
13     sha256 = "83658ae54cc116b96f7fdb12fdd0efac3a4e8c7c7064e3fac3f4a881aa54bf09";
14   };
16   disabled = isPy3k;
18   meta = with lib; {
19     homepage = "http://code.google.com/p/slowaes/";
20     description = "AES implemented in pure python";
21     license = with licenses; [ asl20 ];
22   };