0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-14 06:00:33 +03:00

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

View file

@ -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 ];
};
}