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