Merge pull request #332562 from r-ryantm/auto-update/python312Packages.sphinxcontrib-confluencebuilder

python312Packages.sphinxcontrib-confluencebuilder: 2.6.0 -> 2.6.1
This commit is contained in:
Fabian Affolter
2024-08-06 14:38:20 +02:00
committed by GitHub
@@ -1,28 +1,31 @@
{
lib,
buildPythonPackage,
docutils,
fetchPypi,
flit-core,
docutils,
sphinx,
requests,
jinja2,
pythonOlder,
requests,
sphinx,
}:
buildPythonPackage rec {
pname = "sphinxcontrib-confluencebuilder";
version = "2.6.0";
format = "pyproject";
version = "2.6.1";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchPypi {
pname = "sphinxcontrib_confluencebuilder";
inherit version;
hash = "sha256-yheaZjD62JUq8NUOjhcqK/nLUC9Q4xlQx9hlza3rgoc=";
hash = "sha256-9ymYfxL50ZDGlLzo2LXiBnuo2svWxnl37H/c6ENACjA=";
};
nativeBuildInputs = [ flit-core ];
build-system = [ flit-core ];
propagatedBuildInputs = [
dependencies = [
docutils
sphinx
requests
@@ -38,9 +41,10 @@ buildPythonPackage rec {
meta = with lib; {
description = "Confluence builder for sphinx";
mainProgram = "sphinx-build-confluence";
homepage = "https://github.com/sphinx-contrib/confluencebuilder";
changelog = "https://github.com/sphinx-contrib/confluencebuilder/blob/v${version}/CHANGES.rst";
license = licenses.bsd1;
maintainers = with maintainers; [ graysonhead ];
mainProgram = "sphinx-build-confluence";
};
}