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.32"; 15 16 src = fetchPypi { 17 pname = "sphinx_material"; 18 inherit version; 19 sha256 = "ec02825a1bbe8b662fe624c11b87f1cd8d40875439b5b18c38649cf3366201fa"; 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}