1{ lib 2, buildPythonPackage 3, fetchPypi 4, flit-core 5, jinja2 6, sphinxcontrib-serializinghtml 7}: 8 9buildPythonPackage rec { 10 pname = "sphinxcontrib-websupport"; 11 version = "1.2.6"; 12 format = "pyproject"; 13 14 src = fetchPypi { 15 pname = "sphinxcontrib_websupport"; 16 inherit version; 17 hash = "sha256-1ZK+jhEmG7vGRmjyWO/E/ULJOrYXQRFDtSRf4wxjPYw="; 18 }; 19 20 nativeBuildInputs = [ 21 flit-core 22 ]; 23 24 propagatedBuildInputs = [ 25 jinja2 26 sphinxcontrib-serializinghtml 27 ]; 28 29 doCheck = false; 30 31 pythonNamespaces = [ "sphinxcontrib" ]; 32 33 meta = { 34 description = "Sphinx API for Web Apps"; 35 homepage = "http://sphinx-doc.org/"; 36 license = lib.licenses.bsd2; 37 }; 38}