Drop Python 3.6 support

This commit is contained in:
Jonas Heinrich 2022-08-24 09:14:06 +02:00 committed by GitHub
parent 2bf5770f6e
commit a0dc438516
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -17,7 +17,7 @@ buildPythonPackage rec {
version = "1.0.0";
format = "pyproject";
disabled = pythonOlder "3.6";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
@ -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 ];
};
}