2021-08-18 13:19:15 +00:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, pythonOlder
|
|
|
|
, fetchPypi
|
|
|
|
, sphinx
|
|
|
|
, beautifulsoup4
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "furo";
|
2022-02-10 20:34:41 +00:00
|
|
|
version = "2022.1.2";
|
2021-08-18 13:19:15 +00:00
|
|
|
format = "flit";
|
|
|
|
disable = pythonOlder "3.6";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2022-02-10 20:34:41 +00:00
|
|
|
sha256 = "b217f218cbcd423ffbfe69baa79389d4ecebf2d86f0d593c44ef31da7b5aed30";
|
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 ];
|
|
|
|
};
|
|
|
|
}
|