11 buildPythonPackage rec {
16 disabled = pythonOlder "3.8";
19 inherit pname version format;
22 hash = "sha256-SQoA0IwKN+zJDeA66SJ+jrXW9/dQ7fmAfzmKK98jWN4=";
26 pythonRelaxDeps = [ "sphinx" ];
28 propagatedBuildInputs = [
34 installCheckPhase = ''
35 # furo was built incorrectly if this directory is empty
36 # Ignore the hidden file .gitignore
38 if [ "$(ls 'site-packages/furo/theme/furo/static/' | wc -l)" -le 0 ]; then
39 echo 'static directory must not be empty'
45 pythonImportsCheck = [ "furo" ];
48 description = "Clean customizable documentation theme for Sphinx";
49 homepage = "https://github.com/pradyunsg/furo";
50 changelog = "https://github.com/pradyunsg/furo/blob/${version}/docs/changelog.md";
51 license = licenses.mit;
52 maintainers = with maintainers; [ Luflosi ];