python3Packages.isbnlib: skip failing test on python>=3.14

This commit is contained in:
Gaetan Lepage
2026-01-28 22:43:51 +00:00
parent ae168f1839
commit 387771b7b5
@@ -2,6 +2,7 @@
lib,
buildPythonPackage,
fetchFromGitHub,
pythonAtLeast,
# build-system
setuptools,
@@ -16,6 +17,9 @@ buildPythonPackage (finalAttrs: {
version = "3.10.14";
pyproject = true;
# Several tests fail and suggest that the package is incompatible with python >= 3.14
disabled = pythonAtLeast "3.14";
src = fetchFromGitHub {
owner = "xlcnd";
repo = "isbnlib";