2021-01-25 08:26:54 +00:00
|
|
|
{ lib
|
2019-10-21 22:40:12 +00:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
2020-08-15 22:46:27 +00:00
|
|
|
, isPy27
|
2019-10-21 22:40:12 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "sphinxcontrib-serializinghtml";
|
2021-06-18 21:47:38 +00:00
|
|
|
version = "1.1.5";
|
2020-08-15 22:46:27 +00:00
|
|
|
disabled = isPy27;
|
2019-10-21 22:40:12 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-06-18 21:47:38 +00:00
|
|
|
sha256 = "aa5f6de5dfdf809ef505c4895e51ef5c9eac17d0f287933eb49ec495280b6952";
|
2019-10-21 22:40:12 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
# Check is disabled due to circular dependency of sphinx
|
|
|
|
doCheck = false;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2019-10-21 22:40:12 +00:00
|
|
|
description = "sphinxcontrib-serializinghtml is a sphinx extension which outputs \"serialized\" HTML files (json and pickle).";
|
2022-01-20 23:47:58 +00:00
|
|
|
homepage = "https://github.com/sphinx-doc/sphinxcontrib-serializinghtml";
|
2019-10-21 22:40:12 +00:00
|
|
|
license = licenses.bsd0;
|
2022-01-20 23:47:58 +00:00
|
|
|
maintainers = teams.sphinx.members;
|
2019-10-21 22:40:12 +00:00
|
|
|
};
|
|
|
|
}
|