pythonPackages.zxcvbn-python: init at 4.4.14

This commit is contained in:
Frederik Rietdijk 2017-05-01 09:53:11 +02:00
parent e2bc80ce49
commit c0b77d9902
2 changed files with 27 additions and 0 deletions

@ -0,0 +1,25 @@
{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "zxcvbn-python";
version = "4.4.14";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
sha256 = "fd3a46536035851571e3f4142b64d6e7bcf0ade3cd40d8fecae7a1243945e327";
};
# No tests in archive
doCheck = false;
meta = {
description = "Python implementation of Dropbox's realistic password strength estimator, zxcvbn";
homepage = https://github.com/dwolfhub/zxcvbn-python;
license = with lib.licenses; [ mit ];
};
}

@ -32024,6 +32024,8 @@ EOF
};
};
zxcvbn-python = callPackage ../development/python-modules/zxcvbn-python { };
incremental = callPackage ../development/python-modules/incremental { };
treq = callPackage ../development/python-modules/treq { };