5 , pythonImportsCheckHook
7 # documentation build dependencies
14 # runtime dependencies
19 buildPythonPackage rec {
20 pname = "sphinx-notfound-page";
24 disabled = pythonOlder "3.8";
31 src = fetchFromGitHub {
32 owner = "readthedocs";
33 repo = "sphinx-notfound-page";
34 rev = "refs/tags/${version}";
35 hash = "sha256-tG71UuYbdlWNgq6Y5xRH3aWc9/eTr/RlsRNWSUjrbBE=";
40 pythonImportsCheckHook
53 propagatedBuildInputs = [
57 pythonImportsCheck = [
62 description = "A sphinx extension to create a custom 404 page with absolute URLs hardcoded";
63 homepage = "https://github.com/readthedocs/sphinx-notfound-page";
64 changelog = "https://github.com/readthedocs/sphinx-notfound-page/blob/${version}/CHANGELOG.rst";
65 license = licenses.mit;
66 maintainers = with maintainers; [ kaction ];