From cbd28e2530e09bff43e235a7b5dcd098d6eb5020 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 1 May 2025 00:09:25 +0000 Subject: [PATCH] python312Packages.pep8-naming: 0.14.1 -> 0.15.0 --- pkgs/development/python-modules/pep8-naming/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/pep8-naming/default.nix b/pkgs/development/python-modules/pep8-naming/default.nix index 3999c6ded295..1fe6fb584c6a 100644 --- a/pkgs/development/python-modules/pep8-naming/default.nix +++ b/pkgs/development/python-modules/pep8-naming/default.nix @@ -9,16 +9,16 @@ buildPythonPackage rec { pname = "pep8-naming"; - version = "0.14.1"; + version = "0.15.0"; format = "setuptools"; - disabled = pythonOlder "3.7"; + disabled = pythonOlder "3.9"; src = fetchFromGitHub { owner = "PyCQA"; repo = pname; tag = version; - hash = "sha256-uIVk8+5rVEIBZLz70WUi0O6/Q9ERptJ3b7314gLPeHk="; + hash = "sha256-LOHPLS0BtKsocghi3K24VitlRCwyHbYZB6916i7Gj9c="; }; propagatedBuildInputs = [ flake8 ]; @@ -34,7 +34,7 @@ buildPythonPackage rec { meta = with lib; { description = "Check PEP-8 naming conventions, plugin for flake8"; homepage = "https://github.com/PyCQA/pep8-naming"; - changelog = "https://github.com/PyCQA/pep8-naming/blob/${version}/CHANGELOG.rst"; + changelog = "https://github.com/PyCQA/pep8-naming/blob/${src.tag}/CHANGELOG.rst"; license = licenses.mit; maintainers = with maintainers; [ eadwu ]; };