Unverified Commit 762b3798 authored by Adam C. Stephens's avatar Adam C. Stephens
Browse files

python3Packages.sphinx-prompt: relax unnecessary deps

parent 0e20f27e
Loading
Loading
Loading
Loading
+8 −2
Original line number Diff line number Diff line
@@ -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";