python312Packages.pylint-django: 2.5.4 -> 2.6.0 (#347653)

This commit is contained in:
Nick Cao 2024-10-12 09:02:34 -04:00 committed by GitHub
commit 54cce652cb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -14,21 +14,21 @@
buildPythonPackage rec {
pname = "pylint-django";
version = "2.5.4";
version = "2.6.0";
pyproject = true;
disabled = pythonOlder "3.7";
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "PyCQA";
repo = "pylint-django";
rev = "refs/tags/v${version}";
hash = "sha256-MNgu3LvFoohXA+JzUiHIaYFw0ssEe+H5T8Ea56LcGuI=";
hash = "sha256-Rnty8ryKd5PxFFVYcvB8p9VS3qlHCprxR8+/ySY5qC8=";
};
nativeBuildInputs = [ poetry-core ];
build-system = [ poetry-core ];
propagatedBuildInputs = [ pylint-plugin-utils ];
dependencies = [ pylint-plugin-utils ];
optional-dependencies = {
with_django = [ django ];