depot/third_party/nixpkgs/pkgs/development/python-modules/sphinxcontrib-serializinghtml/default.nix
Default email 841d9c7fc1 Project import generated by Copybara.
GitOrigin-RevId: 3a8d7958a610cd3fec3a6f424480f91a1b259185
2021-06-29 00:13:55 +01:00

27 lines
608 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, isPy27
}:
buildPythonPackage rec {
pname = "sphinxcontrib-serializinghtml";
version = "1.1.5";
disabled = isPy27;
src = fetchPypi {
inherit pname version;
sha256 = "aa5f6de5dfdf809ef505c4895e51ef5c9eac17d0f287933eb49ec495280b6952";
};
# Check is disabled due to circular dependency of sphinx
doCheck = false;
meta = with lib; {
description = "sphinxcontrib-serializinghtml is a sphinx extension which outputs \"serialized\" HTML files (json and pickle).";
homepage = "http://sphinx-doc.org/";
license = licenses.bsd0;
};
}