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