depot/third_party/nixpkgs/pkgs/development/python-modules/sphinxcontrib-htmlhelp/default.nix
Default email 88abffb7d2 Project import generated by Copybara.
GitOrigin-RevId: bc9b956714ed6eac5f8888322aac5bc41389defa
2021-09-18 12:52:07 +02:00

27 lines
545 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, isPy27
}:
buildPythonPackage rec {
pname = "sphinxcontrib-htmlhelp";
version = "2.0.0";
disabled = isPy27;
src = fetchPypi {
inherit pname version;
sha256 = "f5f8bb2d0d629f398bf47d0d69c07bc13b65f75a81ad9e2f71a63d4b7a2f6db2";
};
# Check is disabled due to circular dependency of sphinx
doCheck = false;
meta = with lib; {
description = "sphinxcontrib-htmlhelp is a sphinx extension which ...";
homepage = "http://sphinx-doc.org/";
license = licenses.bsd0;
};
}