Unverified Commit 4a09ea86 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

Merge pull request #332562 from...

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

python312Packages.sphinxcontrib-confluencebuilder: 2.6.0 -> 2.6.1
parents 47c69555 5826544e
Loading
Loading
Loading
Loading
+13 −9
Original line number Diff line number Diff line
{
  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";
  };
}