python3Packages.doc8: 1.1.2 -> 2.0.0 (#418913)

This commit is contained in:
Jonas Heinrich
2025-06-22 12:25:16 +02:00
committed by GitHub
@@ -16,24 +16,24 @@
buildPythonPackage rec {
pname = "doc8";
version = "1.1.2";
format = "pyproject";
version = "2.0.0";
pyproject = true;
disabled = pythonOlder "3.7";
disabled = pythonOlder "3.10";
src = fetchPypi {
inherit pname version;
hash = "sha256-EiXzAUThzJfjiNuvf+PpltKJdHOlOm2uJo3d4hw1S5g=";
hash = "sha256-EmetMnWJcfvPmRRCQXo5Nce8nlJVDnNiLg5WulXqHUA=";
};
nativeBuildInputs = [
build-system = [
setuptools-scm
wheel
];
buildInputs = [ pbr ];
propagatedBuildInputs = [
dependencies = [
docutils
chardet
stevedore
@@ -43,16 +43,14 @@ buildPythonPackage rec {
nativeCheckInputs = [ pytestCheckHook ];
pythonRelaxDeps = [ "docutils" ];
pythonImportsCheck = [ "doc8" ];
meta = with lib; {
meta = {
description = "Style checker for Sphinx (or other) RST documentation";
mainProgram = "doc8";
homepage = "https://github.com/pycqa/doc8";
changelog = "https://github.com/PyCQA/doc8/releases/tag/v${version}";
license = licenses.asl20;
maintainers = with maintainers; [ onny ];
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ onny ];
};
}