1{ lib 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 pname = "zxcvbn-python"; 8 version = "4.4.16"; 9 10 name = "${pname}-${version}"; 11 12 src = fetchPypi { 13 inherit pname version; 14 sha256 = "63cc481bfb8950c43d4a87926be22cf8c4bb281ef7f818a8ef2d30b55a97c3e0"; 15 }; 16 17 # No tests in archive 18 doCheck = false; 19 20 meta = { 21 description = "Python implementation of Dropbox's realistic password strength estimator, zxcvbn"; 22 homepage = https://github.com/dwolfhub/zxcvbn-python; 23 license = with lib.licenses; [ mit ]; 24 }; 25}