2021-01-25 00:26:54 -08:00
|
|
|
{ lib
|
2019-10-21 15:40:12 -07:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
2020-08-15 15:46:27 -07:00
|
|
|
, isPy27
|
2019-10-21 15:40:12 -07:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "sphinxcontrib-serializinghtml";
|
2020-05-09 03:02:01 -07:00
|
|
|
version = "1.1.4";
|
2020-08-15 15:46:27 -07:00
|
|
|
disabled = isPy27;
|
2019-10-21 15:40:12 -07:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-05-09 03:02:01 -07:00
|
|
|
sha256 = "eaa0eccc86e982a9b939b2b82d12cc5d013385ba5eadcc7e4fed23f4405f77bc";
|
2019-10-21 15:40:12 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
# Check is disabled due to circular dependency of sphinx
|
|
|
|
doCheck = false;
|
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2019-10-21 15:40:12 -07:00
|
|
|
description = "sphinxcontrib-serializinghtml is a sphinx extension which outputs \"serialized\" HTML files (json and pickle).";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "http://sphinx-doc.org/";
|
2019-10-21 15:40:12 -07:00
|
|
|
license = licenses.bsd0;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|