about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorNikolay Amiantov <ab@fmap.me>2016-08-13 03:26:45 +0300
committerNikolay Amiantov <ab@fmap.me>2016-08-14 22:37:12 +0300
commit3065f54a64ac3f096590c9e0b3b48fd726393c8d (patch)
treeb7e578becb791a634c840af40797d62e9116d0e7 /pkgs
parenta1e40f1efc5f48bd4e082d74018beb1cc25413ba (diff)
downloadnixlib-3065f54a64ac3f096590c9e0b3b48fd726393c8d.tar
nixlib-3065f54a64ac3f096590c9e0b3b48fd726393c8d.tar.gz
nixlib-3065f54a64ac3f096590c9e0b3b48fd726393c8d.tar.bz2
nixlib-3065f54a64ac3f096590c9e0b3b48fd726393c8d.tar.lz
nixlib-3065f54a64ac3f096590c9e0b3b48fd726393c8d.tar.xz
nixlib-3065f54a64ac3f096590c9e0b3b48fd726393c8d.tar.zst
nixlib-3065f54a64ac3f096590c9e0b3b48fd726393c8d.zip
pythonPackages.rsa: 3.3 -> 3.4.2
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/top-level/python-packages.nix10
1 files changed, 3 insertions, 7 deletions
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index ce6870d18249..e2081eab3d04 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -21100,22 +21100,18 @@ in modules // {
 
   rsa = buildPythonPackage rec {
     name = "rsa-${version}";
-    version = "3.3";
+    version = "3.4.2";
 
     src = pkgs.fetchurl {
       url = "mirror://pypi/r/rsa/${name}.tar.gz";
-      sha256 = "03f3d9bebad06681771016b8752a40b12f615ff32363c7aa19b3798e73ccd615";
+      sha256 = "1dcxvszbikgzh99ybdc7jq0zb9wspy2ds8z9mjsqiyv3q884xpr5";
     };
 
     nativeBuildInputs = with self; [ unittest2 ];
     propagatedBuildInputs = with self; [ pyasn1 ];
 
-    checkPhase = ''
-      ${python.interpreter} run_tests.py
-    '';
-
     meta = {
-      homepage = http://stuvel.eu/rsa;
+      homepage = "http://stuvel.eu/rsa";
       license = licenses.asl20;
       description = "A pure-Python RSA implementation";
     };