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