pythonPackages.zxcvbn-rs-py: lift Python version restriction, it is now compatible with Python 3.13

See https://github.com/fief-dev/zxcvbn-rs-py/issues/2
This commit is contained in:
r-vdp
2025-06-20 13:54:48 +02:00
parent 02dd6f762c
commit 06dc55502e
@@ -2,7 +2,6 @@
lib,
buildPythonPackage,
pythonOlder,
pythonAtLeast,
fetchPypi,
rustPlatform,
}:
@@ -13,7 +12,7 @@ buildPythonPackage rec {
pyproject = true;
disabled = pythonOlder "3.9" || pythonAtLeast "3.13";
disabled = pythonOlder "3.9";
src = fetchPypi {
pname = "zxcvbn_rs_py";