2021-08-18 13:19:15 +00:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, pythonOlder
|
|
|
|
, fetchPypi
|
|
|
|
, sphinx
|
|
|
|
, beautifulsoup4
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "furo";
|
2021-09-23 15:35:13 +00:00
|
|
|
version = "2021.9.22";
|
2021-08-18 13:19:15 +00:00
|
|
|
format = "flit";
|
|
|
|
disable = pythonOlder "3.6";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-09-23 15:35:13 +00:00
|
|
|
sha256 = "sha256-749l6cXyGbIarXXJmiCU0DsWQwrvH1dobOGePyT5VK8=";
|
2021-08-18 13:19:15 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
sphinx
|
|
|
|
beautifulsoup4
|
|
|
|
];
|
|
|
|
|
|
|
|
pythonImportsCheck = [ "furo" ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "A clean customizable documentation theme for Sphinx";
|
|
|
|
homepage = "https://github.com/pradyunsg/furo";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ Luflosi ];
|
|
|
|
};
|
|
|
|
}
|