python3Packages.sphinx-rtd-theme: relax sphinx constraint

This commit is contained in:
Martin Weinelt 2022-12-31 02:42:08 +01:00
parent 86af3e680b
commit 5e7a3f8639

View file

@ -18,8 +18,9 @@ buildPythonPackage rec {
};
postPatch = ''
substituteInPlace setup.py \
--replace "docutils<0.18" "docutils"
substituteInPlace setup.cfg \
--replace "docutils <0.18" "docutils" \
--replace "sphinx >=1.6,<6" "sphinx"
'';
preBuild = ''