Add rsa pythonPackage

This commit is contained in:
Shea Levy 2014-02-12 09:29:22 -05:00
parent ffc3091811
commit 6a4e30d8d1

View file

@ -6118,6 +6118,23 @@ pythonPackages = modules // import ./python-packages-generated.nix {
});
rsa = buildPythonPackage rec {
name = "rsa-3.1.2";
src = fetchurl {
url = "https://bitbucket.org/sybren/python-rsa/get/version-3.1.2.tar.bz2";
sha256 = "0ag2q4gaapi74x47q74xhcjzs4b7r2bb6zrj2an4sz5d3yd06cgf";
};
buildInputs = [ pythonPackages.pyasn1 ];
meta = {
homepage = http://stuvel.eu/rsa;
license = "Apache License 2.0";
description = "A pure-Python RSA implementation";
};
};
rtslib_fb = buildPythonPackage rec {
version = "2.1.fb43";
name = "rtslib-fb-${version}";