1{ lib
2, buildPythonPackage
3, fetchPypi
4, isPy27
5}:
6
7buildPythonPackage rec {
8 pname = "sphinxcontrib-serializinghtml";
9 version = "1.1.5";
10 disabled = isPy27;
11
12 src = fetchPypi {
13 inherit pname version;
14 sha256 = "aa5f6de5dfdf809ef505c4895e51ef5c9eac17d0f287933eb49ec495280b6952";
15 };
16
17 # Check is disabled due to circular dependency of sphinx
18 doCheck = false;
19
20 meta = with lib; {
21 description = "sphinxcontrib-serializinghtml is a sphinx extension which outputs \"serialized\" HTML files (json and pickle).";
22 homepage = "https://github.com/sphinx-doc/sphinxcontrib-serializinghtml";
23 license = licenses.bsd0;
24 maintainers = teams.sphinx.members;
25 };
26}