Merge pull request #183339 from r-ryantm/auto-update/python3.10-doc8

python310Packages.doc8: 0.11.2 -> 1.0.0
This commit is contained in:
Jonas Heinrich 2022-08-29 15:11:52 +02:00 committed by GitHub
commit d745170a26
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -14,14 +14,14 @@
buildPythonPackage rec {
pname = "doc8";
version = "0.11.2";
version = "1.0.0";
format = "pyproject";
disabled = pythonOlder "3.6";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-w1ojH4jxXCBGWRVO09SZ+k1ALX5j1By6e1TPXmRhI6s=";
sha256 = "sha256-HpmaFP5BXqltidUFPHkNAQYfGbZzdwa4F9FXnCoHzBY=";
};
nativeBuildInputs = [
@ -52,6 +52,6 @@ buildPythonPackage rec {
description = "Style checker for Sphinx (or other) RST documentation";
homepage = "https://github.com/pycqa/doc8";
license = licenses.asl20;
maintainers = with maintainers; [ ];
maintainers = with maintainers; [ onny ];
};
}