python310Packages.flake8-docstrings: 1.6.0 -> 1.7.0

Changelog: https://github.com/PyCQA/flake8-docstrings/blob/1.7.0/HISTORY.rst
This commit is contained in:
Fabian Affolter 2023-02-25 13:56:18 +01:00
parent 8a8a06bba3
commit 7702f01f89

View file

@ -1,6 +1,6 @@
{ lib
, buildPythonPackage
, fetchPypi
, fetchFromGitHub
, flake8
, pydocstyle
, pythonOlder
@ -8,14 +8,16 @@
buildPythonPackage rec {
pname = "flake8-docstrings";
version = "1.6.0";
version = "1.7.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-n+fGowYGSvjmKgVcL2Hp6x2lX4S7OcrvK4TOU3CKw0s=";
src = fetchFromGitHub {
owner = "PyCQA";
repo = pname;
rev = "refs/tags/${version}";
hash = "sha256-EafLWySeHB81HRcXiDs56lbUZzGvnT87WVqln0PoLCk=";
};
propagatedBuildInputs = [
@ -23,6 +25,9 @@ buildPythonPackage rec {
pydocstyle
];
# Module has no tests
doCheck = false;
pythonImportsCheck = [
"flake8_docstrings"
];