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