python3Packages.sphinx-prompt: relax unnecessary deps

This commit is contained in:
Adam C. Stephens
2025-10-07 20:02:22 -04:00
parent 0e20f27e6d
commit 762b3798ca
@@ -39,9 +39,15 @@ buildPythonPackage rec {
sphinx
];
nativeCheckInputs = [ pytestCheckHook ];
# upstream pins these unnecessarily in their requirements.txt
pythonRelaxDeps = [
"certifi"
"requests"
"urllib3"
"zipp"
];
pythonRelaxDeps = [ "requests" ];
nativeCheckInputs = [ pytestCheckHook ];
meta = with lib; {
description = "Sphinx extension for creating unselectable prompt";