f34ce41345
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
54 lines
1.2 KiB
Nix
54 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
pythonOlder,
|
|
fetchPypi,
|
|
sphinx,
|
|
beautifulsoup4,
|
|
sphinx-basic-ng,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "furo";
|
|
version = "2024.5.6";
|
|
format = "wheel";
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version format;
|
|
dist = "py3";
|
|
python = "py3";
|
|
hash = "sha256-SQoA0IwKN+zJDeA66SJ+jrXW9/dQ7fmAfzmKK98jWN4=";
|
|
};
|
|
|
|
|
|
pythonRelaxDeps = [ "sphinx" ];
|
|
|
|
propagatedBuildInputs = [
|
|
sphinx
|
|
beautifulsoup4
|
|
sphinx-basic-ng
|
|
];
|
|
|
|
installCheckPhase = ''
|
|
# furo was built incorrectly if this directory is empty
|
|
# Ignore the hidden file .gitignore
|
|
cd "$out/lib/python"*
|
|
if [ "$(ls 'site-packages/furo/theme/furo/static/' | wc -l)" -le 0 ]; then
|
|
echo 'static directory must not be empty'
|
|
exit 1
|
|
fi
|
|
cd -
|
|
'';
|
|
|
|
pythonImportsCheck = [ "furo" ];
|
|
|
|
meta = with lib; {
|
|
description = "Clean customizable documentation theme for Sphinx";
|
|
homepage = "https://github.com/pradyunsg/furo";
|
|
changelog = "https://github.com/pradyunsg/furo/blob/${version}/docs/changelog.md";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ Luflosi ];
|
|
};
|
|
}
|