pythonPackages.zxcvbn-python: 4.4.24 -> 4.4.27

This commit is contained in:
Edmund Wu 2019-05-18 12:03:01 -04:00 committed by zimbatm
parent 11fc7674b9
commit 115d1babce

View File

@ -1,24 +1,24 @@
{ lib { lib, buildPythonPackage, fetchFromGitHub
, buildPythonPackage , pytest_3 }:
, fetchPypi
}:
buildPythonPackage rec { buildPythonPackage rec {
pname = "zxcvbn-python"; pname = "zxcvbn-python";
version = "4.4.24"; version = "4.4.27";
src = fetchFromGitHub {
src = fetchPypi { owner = "dwolfhub";
inherit pname version; repo = pname;
sha256 = "900b28cc5e96be4091d8778f19f222832890264e338765a1c1c09fca2db64b2d"; rev = "v${version}";
sha256 = "0w0sx9ssjks8da973cdv5xi87yjsf038jqxmzj2y26xvpyjsg2v2";
}; };
# No tests in archive checkInputs = [
doCheck = false; pytest_3
];
meta = { meta = {
description = "Python implementation of Dropbox's realistic password strength estimator, zxcvbn"; description = "Python implementation of Dropbox's realistic password strength estimator, zxcvbn";
homepage = https://github.com/dwolfhub/zxcvbn-python; homepage = https://github.com/dwolfhub/zxcvbn-python;
license = with lib.licenses; [ mit ]; license = with lib.licenses; [ mit ];
}; };
} }