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