1{ lib
2, buildPythonPackage
3, fetchPypi
4, sphinx
5, beautifulsoup4
6, python-slugify
7, unidecode
8, css-html-js-minify
9, lxml
10}:
11
12buildPythonPackage rec {
13 pname = "sphinx-material";
14 version = "0.0.35";
15
16 src = fetchPypi {
17 pname = "sphinx_material";
18 inherit version;
19 sha256 = "27f0f1084aa0201b43879aef24a0521b78dc8df4942b003a4e7d79ab11515852";
20 };
21
22 propagatedBuildInputs = [
23 sphinx
24 beautifulsoup4
25 python-slugify
26 unidecode
27 css-html-js-minify
28 lxml
29 ];
30
31 doCheck = false; # no tests
32
33 pythonImportsCheck = [ "sphinx_material" ];
34
35 meta = with lib; {
36 description = "A material-based, responsive theme inspired by mkdocs-material";
37 homepage = "https://bashtage.github.io/sphinx-material";
38 license = licenses.mit;
39 maintainers = with maintainers; [ FlorianFranzen ];
40 };
41}