mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
Add rsa pythonPackage
This commit is contained in:
parent
ffc3091811
commit
6a4e30d8d1
1 changed files with 17 additions and 0 deletions
|
@ -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}";
|
||||
|
|
Loading…
Reference in a new issue