pythonPackages.rsa: 3.3 -> 3.4.2

+3 -7
+3 -7
pkgs/top-level/python-packages.nix
··· 21100 21101 rsa = buildPythonPackage rec { 21102 name = "rsa-${version}"; 21103 - version = "3.3"; 21104 21105 src = pkgs.fetchurl { 21106 url = "mirror://pypi/r/rsa/${name}.tar.gz"; 21107 - sha256 = "03f3d9bebad06681771016b8752a40b12f615ff32363c7aa19b3798e73ccd615"; 21108 }; 21109 21110 nativeBuildInputs = with self; [ unittest2 ]; 21111 propagatedBuildInputs = with self; [ pyasn1 ]; 21112 21113 - checkPhase = '' 21114 - ${python.interpreter} run_tests.py 21115 - ''; 21116 - 21117 meta = { 21118 - homepage = http://stuvel.eu/rsa; 21119 license = licenses.asl20; 21120 description = "A pure-Python RSA implementation"; 21121 };
··· 21100 21101 rsa = buildPythonPackage rec { 21102 name = "rsa-${version}"; 21103 + version = "3.4.2"; 21104 21105 src = pkgs.fetchurl { 21106 url = "mirror://pypi/r/rsa/${name}.tar.gz"; 21107 + sha256 = "1dcxvszbikgzh99ybdc7jq0zb9wspy2ds8z9mjsqiyv3q884xpr5"; 21108 }; 21109 21110 nativeBuildInputs = with self; [ unittest2 ]; 21111 propagatedBuildInputs = with self; [ pyasn1 ]; 21112 21113 meta = { 21114 + homepage = "http://stuvel.eu/rsa"; 21115 license = licenses.asl20; 21116 description = "A pure-Python RSA implementation"; 21117 };