9 buildPythonPackage rec {
10 pname = "flake8-docstrings";
12 format = "setuptools";
14 disabled = pythonOlder "3.7";
16 src = fetchFromGitHub {
19 rev = "refs/tags/${version}";
20 hash = "sha256-EafLWySeHB81HRcXiDs56lbUZzGvnT87WVqln0PoLCk=";
23 propagatedBuildInputs = [
31 pythonImportsCheck = [
36 description = "Extension for flake8 which uses pydocstyle to check docstrings";
37 homepage = "https://github.com/pycqa/flake8-docstrings";
38 changelog = "https://github.com/PyCQA/flake8-docstrings/blob/${version}/HISTORY.rst";
39 license = licenses.mit;
40 maintainers = with maintainers; [ smaret ];