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:
parent
e2bc80ce49
commit
c0b77d9902
2 changed files with 27 additions and 0 deletions
25
pkgs/development/python-modules/zxcvbn-python/default.nix
Normal file
25
pkgs/development/python-modules/zxcvbn-python/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue