python3Packages.sphinxcontrib-programoutput: 0.18 -> 0.20

Changelog: https://github.com/NextThought/sphinxcontrib-programoutput/releases/tag/v0.20
This commit is contained in:
Fabian Affolter
2026-08-24 15:39:40 +02:00
parent bf5197a65e
commit 186cec7145

View File

@@ -1,38 +1,47 @@
{
lib,
buildPythonPackage,
docutils,
fetchFromGitHub,
setuptools,
sphinx,
pytestCheckHook,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "sphinxcontrib-programoutput";
version = "0.18";
version = "0.20";
pyproject = true;
src = fetchFromGitHub {
owner = "NextThought";
repo = "sphinxcontrib-programoutput";
tag = version;
hash = "sha256-WI4R96G4cYYTxTwW4dKAayUNQyhVSrjhdWJyy8nZBUk=";
tag = finalAttrs.version;
hash = "sha256-1nWEVE4Ie6QRtm8IvSIrxYCjNtyp831teBskv63YETI=";
};
build-system = [ setuptools ];
buildInputs = [ sphinx ];
dependencies = [ docutils ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "sphinxcontrib.programoutput" ];
pythonNamespaces = [ "sphinxcontrib" ];
disabledTests = [
# erbsland-sphinx-ansi is not available in nixpkgs
"test_use_ansi_enabled_extension"
];
meta = {
description = "Sphinx extension to include program output";
homepage = "https://github.com/NextThought/sphinxcontrib-programoutput";
changelog = "https://github.com/NextThought/sphinxcontrib-programoutput/releases/tag/v${finalAttrs.src.tag}";
license = lib.licenses.bsd2;
maintainers = [ ];
};
}
})