summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--pkgs/top-level/python-packages.nix7
1 files changed, 5 insertions, 2 deletions
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index 9e3e3e0fdfb7..6a3516ded4e8 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -2817,17 +2817,20 @@ let
   };
 
   bcrypt = buildPythonPackage rec {
-    name = "bcrypt-1.0.2";
+    name = "bcrypt-2.0.0";
 
     src = pkgs.fetchurl {
       url = "http://pypi.python.org/packages/source/b/bcrypt/${name}.tar.gz";
-      md5 = "c5df008669d17dd6eeb5e2042d5e136f";
+      sha256 = "8b2d197ef220d10eb74625dde7af3b10daa973ae9a1eadd6366f763fad4387fa";
     };
 
     buildInputs = with self; [ pycparser mock pytest py ] ++ optionals (!isPyPy) [ cffi ];
 
     meta = {
       maintainers = with maintainers; [ iElectric ];
+      description = "Modern password hashing for your software and your servers";
+      license = licenses.asl20;
+      homepage = https://github.com/pyca/bcrypt/;
     };
   };