sphinxcontrib-qthelp: init at 1.0.2
build dep of sphinx 2.2.0
This commit is contained in:
parent
56a517e47c
commit
a3746ffc8d
2 changed files with 27 additions and 0 deletions
|
@ -0,0 +1,25 @@
|
|||
{ stdenv
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "sphinxcontrib-qthelp";
|
||||
version = "1.0.2";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "79465ce11ae5694ff165becda529a600c754f4bc459778778c7017374d4d406f";
|
||||
};
|
||||
|
||||
|
||||
# Check is disabled due to circular dependency of sphinx
|
||||
doCheck = false;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "sphinxcontrib-qthelp is a sphinx extension which outputs QtHelp document.";
|
||||
homepage = http://sphinx-doc.org/;
|
||||
license = licenses.bsd0;
|
||||
};
|
||||
|
||||
}
|
|
@ -5019,6 +5019,8 @@ in {
|
|||
|
||||
sphinxcontrib-jsmath = callPackage ../development/python-modules/sphinxcontrib-jsmath {};
|
||||
|
||||
sphinxcontrib-qthelp = callPackage ../development/python-modules/sphinxcontrib-qthelp {};
|
||||
|
||||
sphinxcontrib-bibtex = callPackage ../development/python-modules/sphinxcontrib-bibtex {};
|
||||
|
||||
sphinx-navtree = callPackage ../development/python-modules/sphinx-navtree {};
|
||||
|
|
Loading…
Reference in a new issue