python310Packages.sphinxcontrib-confluencebuilder: init at 1.8.0 (#182857)
This commit is contained in:
parent
180147d3dc
commit
b7a98b858b
2 changed files with 41 additions and 0 deletions
|
@ -0,0 +1,39 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, docutils
|
||||
, sphinx
|
||||
, requests
|
||||
, jinja2
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "sphinxcontrib-confluencebuilder";
|
||||
version = "1.8.0";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
hash = "sha256-u+sjhj/2fu8fLGRb2zgnNI+y7wIIUYTMJhRekrdtMeU=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
docutils
|
||||
sphinx
|
||||
requests
|
||||
jinja2
|
||||
];
|
||||
|
||||
# Tests are disabled due to a circular dependency on Sphinx
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [
|
||||
"sphinxcontrib.confluencebuilder"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Confluence builder for sphinx";
|
||||
homepage = "https://github.com/sphinx-contrib/confluencebuilder";
|
||||
license = licenses.bsd1;
|
||||
maintainers = with maintainers; [ graysonhead ];
|
||||
};
|
||||
}
|
|
@ -10070,6 +10070,8 @@ in {
|
|||
|
||||
sphinxcontrib-blockdiag = callPackage ../development/python-modules/sphinxcontrib-blockdiag { };
|
||||
|
||||
sphinxcontrib-confluencebuilder = callPackage ../development/python-modules/sphinxcontrib-confluencebuilder { };
|
||||
|
||||
sphinxcontrib-devhelp = callPackage ../development/python-modules/sphinxcontrib-devhelp { };
|
||||
|
||||
sphinxcontrib-excel-table = callPackage ../development/python-modules/sphinxcontrib-excel-table { };
|
||||
|
|
Loading…
Reference in a new issue