1{ lib
2, buildPythonPackage
3, fetchPypi
4, sphinxcontrib-serializinghtml
5, six
6}:
7
8buildPythonPackage rec {
9 pname = "sphinxcontrib-websupport";
10 version = "1.2.4";
11
12 src = fetchPypi {
13 inherit pname version;
14 sha256 = "4edf0223a0685a7c485ae5a156b6f529ba1ee481a1417817935b20bde1956232";
15 };
16
17 propagatedBuildInputs = [ six sphinxcontrib-serializinghtml ];
18
19 doCheck = false;
20
21 meta = {
22 description = "Sphinx API for Web Apps";
23 homepage = "http://sphinx-doc.org/";
24 license = lib.licenses.bsd2;
25 };
26}