1{ lib 2, buildPythonPackage 3, fetchPypi 4, isPy27 5}: 6 7buildPythonPackage rec { 8 pname = "sphinxcontrib-htmlhelp"; 9 version = "2.0.0"; 10 disabled = isPy27; 11 12 src = fetchPypi { 13 inherit pname version; 14 sha256 = "f5f8bb2d0d629f398bf47d0d69c07bc13b65f75a81ad9e2f71a63d4b7a2f6db2"; 15 }; 16 17 # Check is disabled due to circular dependency of sphinx 18 doCheck = false; 19 20 meta = with lib; { 21 description = "Sphinx extension which renders HTML help files"; 22 homepage = "https://github.com/sphinx-doc/sphinxcontrib-htmlhelp"; 23 license = licenses.bsd0; 24 maintainers = teams.sphinx.members; 25 }; 26}