python3Packages.zxcvbn: migrate to pyproject

This commit is contained in:
Harinn
2026-06-13 05:21:32 +07:00
parent b92da2f265
commit 9ee7545cf9
@@ -2,13 +2,14 @@
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "zxcvbn";
version = "4.5.0";
format = "setuptools";
pyproject = true;
# no tests included in PyPI tarball
src = fetchFromGitHub {
@@ -18,6 +19,8 @@ buildPythonPackage rec {
hash = "sha256-0SVJkJMEMnZVMpamDVP02kMwWRSj5zGlrMYG9kn0aXQ=";
};
build-system = [ setuptools ];
nativeCheckInputs = [ pytestCheckHook ];
meta = {