mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-14 06:00:33 +03:00
sphinxcontrib-devhelp: init at 1.0.1
build dep of sphinx 2.2.0
This commit is contained in:
parent
2a6996cca0
commit
00fef5d9c2
2 changed files with 27 additions and 0 deletions
|
@ -0,0 +1,25 @@
|
||||||
|
{ stdenv
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "sphinxcontrib-devhelp";
|
||||||
|
version = "1.0.1";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "6c64b077937330a9128a4da74586e8c2130262f014689b4b89e2d08ee7294a34";
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
# Check is disabled due to circular dependency of sphinx
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "sphinxcontrib-devhelp is a sphinx extension which outputs Devhelp document.";
|
||||||
|
homepage = http://sphinx-doc.org/;
|
||||||
|
license = licenses.bsd0;
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
|
@ -5013,6 +5013,8 @@ in {
|
||||||
|
|
||||||
sphinxcontrib-applehelp = callPackage ../development/python-modules/sphinxcontrib-applehelp {};
|
sphinxcontrib-applehelp = callPackage ../development/python-modules/sphinxcontrib-applehelp {};
|
||||||
|
|
||||||
|
sphinxcontrib-devhelp = callPackage ../development/python-modules/sphinxcontrib-devhelp {};
|
||||||
|
|
||||||
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…
Add table
Add a link
Reference in a new issue