5 , pythonImportsCheckHook
6 # documentation build dependencies
13 # runtime dependencies
17 buildPythonPackage rec {
18 pname = "sphinx-notfound-page";
21 outputs = [ "out" "doc" ];
23 src = fetchFromGitHub {
24 owner = "readthedocs";
25 repo = "sphinx-notfound-page";
27 hash = "sha256-tG71UuYbdlWNgq6Y5xRH3aWc9/eTr/RlsRNWSUjrbBE=";
32 pythonImportsCheckHook
41 propagatedBuildInputs = [ sphinx ];
43 pythonImportsCheck = [ "notfound" ];
46 description = "A sphinx extension to create a custom 404 page with absolute URLs hardcoded";
47 homepage = "https://github.com/readthedocs/sphinx-notfound-page";
48 license = licenses.mit;
49 maintainers = with maintainers; [ kaction ];