{ lib , buildPythonPackage , fetchPypi , requests , pytest , mock , sphinx }: buildPythonPackage rec { pname = "readthedocs-sphinx-ext"; version = "2.1.8"; src = fetchPypi { inherit pname version; sha256 = "sha256-pX43E9r3e/kdG6GeS5iIpHwKv+tj7PAuOsd/z9mb/mk="; }; propagatedBuildInputs = [ requests ]; checkInputs = [ pytest mock sphinx ]; checkPhase = '' py.test ''; meta = with lib; { description = "Sphinx extension for Read the Docs overrides"; homepage = "https://github.com/rtfd/readthedocs-sphinx-ext"; license = licenses.mit; }; }