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=";
48 buildInputs = [ sphinx ];
50 propagatedBuildInputs = [ setuptools ];
52 pythonImportsCheck = [ "notfound" ];
55 description = "Sphinx extension to create a custom 404 page with absolute URLs hardcoded";
56 homepage = "https://github.com/readthedocs/sphinx-notfound-page";
57 changelog = "https://github.com/readthedocs/sphinx-notfound-page/blob/${version}/CHANGELOG.rst";
58 license = licenses.mit;
59 maintainers = with maintainers; [ kaction ];