python3Packages.pycodestyle: 2.13.0 -> 2.14.0

Diff: https://github.com/PyCQA/pycodestyle/compare/2.13.0...2.14.0

Changelog: https://github.com/PyCQA/pycodestyle/blob/2.14.0/CHANGES.txt

Changed files
+8 -8
pkgs
development
python-modules
pycodestyle
+8 -8
pkgs/development/python-modules/pycodestyle/default.nix
···
buildPythonPackage rec {
pname = "pycodestyle";
-
version = "2.13.0";
+
version = "2.14.0";
pyproject = true;
src = fetchFromGitHub {
owner = "PyCQA";
repo = "pycodestyle";
-
rev = version;
-
hash = "sha256-jpF0/sVzRjot8KRdXqvhWpdafzC/Fska6jmG3s2U6Wk=";
+
tag = version;
+
hash = "sha256-1EEQp/QEulrdU9tTe28NerQ33IWlAiSlicpmNYciW88=";
};
build-system = [ setuptools ];
···
nativeCheckInputs = [ pytestCheckHook ];
-
# https://github.com/PyCQA/pycodestyle/blob/2.13.0/tox.ini#L16
+
# https://github.com/PyCQA/pycodestyle/blob/2.14.0/tox.ini#L16
postCheck = ''
${python.interpreter} -m pycodestyle --statistics pycodestyle.py
'';
···
"test_check_nullbytes"
];
-
meta = with lib; {
-
changelog = "https://github.com/PyCQA/pycodestyle/blob/${version}/CHANGES.txt";
+
meta = {
+
changelog = "https://github.com/PyCQA/pycodestyle/blob/${src.tag}/CHANGES.txt";
description = "Python style guide checker";
mainProgram = "pycodestyle";
homepage = "https://pycodestyle.pycqa.org/";
-
license = licenses.mit;
-
maintainers = with maintainers; [ kamadorueda ];
+
license = lib.licenses.mit;
+
maintainers = with lib.maintainers; [ kamadorueda ];
};
}