sphinxcontrib-applehelp: init at 1.0.1
build dep of sphinx 2.2.0
This commit is contained in:
parent
059a572616
commit
2a6996cca0
@ -0,0 +1,25 @@
|
|||||||
|
{ stdenv
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "sphinxcontrib-applehelp";
|
||||||
|
version = "1.0.1";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "edaa0ab2b2bc74403149cb0209d6775c96de797dfd5b5e2a71981309efab3897";
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
# Check is disabled due to circular dependency of sphinx
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "sphinxcontrib-applehelp is a sphinx extension which outputs Apple help books";
|
||||||
|
homepage = http://sphinx-doc.org/;
|
||||||
|
license = licenses.bsd0;
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
@ -5011,6 +5011,8 @@ in {
|
|||||||
|
|
||||||
sphinx-testing = callPackage ../development/python-modules/sphinx-testing { };
|
sphinx-testing = callPackage ../development/python-modules/sphinx-testing { };
|
||||||
|
|
||||||
|
sphinxcontrib-applehelp = callPackage ../development/python-modules/sphinxcontrib-applehelp {};
|
||||||
|
|
||||||
sphinxcontrib-bibtex = callPackage ../development/python-modules/sphinxcontrib-bibtex {};
|
sphinxcontrib-bibtex = callPackage ../development/python-modules/sphinxcontrib-bibtex {};
|
||||||
|
|
||||||
sphinx-navtree = callPackage ../development/python-modules/sphinx-navtree {};
|
sphinx-navtree = callPackage ../development/python-modules/sphinx-navtree {};
|
||||||
|
Loading…
Reference in New Issue
Block a user