1{ lib
2, buildPythonPackage
3, pythonOlder
4, fetchPypi
5, sphinx
6, beautifulsoup4
7}:
8
9buildPythonPackage rec {
10 pname = "furo";
11 version = "2021.10.9";
12 format = "flit";
13 disable = pythonOlder "3.6";
14
15 src = fetchPypi {
16 inherit pname version;
17 sha256 = "sha256-K6pCoi7ePm6Vxhgqs2S6wuwVt5vH+cp/sJ/ZrsSzVAw=";
18 };
19
20 propagatedBuildInputs = [
21 sphinx
22 beautifulsoup4
23 ];
24
25 pythonImportsCheck = [ "furo" ];
26
27 meta = with lib; {
28 description = "A clean customizable documentation theme for Sphinx";
29 homepage = "https://github.com/pradyunsg/furo";
30 license = licenses.mit;
31 maintainers = with maintainers; [ Luflosi ];
32 };
33}