python3Packages.ydata-profiling: disable on python>=3.14

Tracking: https://github.com/NixOS/nixpkgs/issues/475732
This commit is contained in:
Gaetan Lepage
2026-02-01 21:38:29 +00:00
parent 490c7d2129
commit ff047a9023
@@ -2,6 +2,7 @@
lib,
buildPythonPackage,
fetchFromGitHub,
pythonAtLeast,
# build-system
setuptools,
@@ -47,6 +48,9 @@ buildPythonPackage (finalAttrs: {
hash = "sha256-CNeHsOpFkKvcCWGEholabcsqXJzINUUxFZ7I5bPBoYM=";
};
# pydantic.v1.errors.ConfigError: unable to infer type for attribute "sortby"
disabled = pythonAtLeast "3.14";
postPatch = ''
substituteInPlace pyproject.toml \
--replace-fail "setuptools>=72.0.0,<80.0.0" "setuptools" \