python310Packages.pylint-django: 2.5.2 -> 2.5.3

main
Fabian Affolter 2 years ago
parent b959e05dc7
commit d5681e0473
  1. 13
      pkgs/development/python-modules/pylint-django/default.nix

@ -1,24 +1,25 @@
{ lib { lib
, buildPythonPackage , buildPythonPackage
, coverage
, django , django
, factory_boy , factory_boy
, fetchFromGitHub , fetchFromGitHub
, isPy3k
, pylint-plugin-utils , pylint-plugin-utils
, pytestCheckHook , pytestCheckHook
, pythonOlder
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "pylint-django"; pname = "pylint-django";
version = "2.5.2"; version = "2.5.3";
disabled = !isPy3k; format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "PyCQA"; owner = "PyCQA";
repo = pname; repo = pname;
rev = "v${version}"; rev = "v${version}";
sha256 = "sha256-VgGdV1T154LauclGo6jpLPUrYn5vTOWwvO4IXQ9se7c="; hash = "sha256-5xEXjNMkOetRM9NDz0S4DsC6v39YQi34s2s+Fs56hYU=";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
@ -27,7 +28,6 @@ buildPythonPackage rec {
]; ];
checkInputs = [ checkInputs = [
coverage
factory_boy factory_boy
pytestCheckHook pytestCheckHook
]; ];
@ -38,6 +38,7 @@ buildPythonPackage rec {
"external_factory_boy_noerror" "external_factory_boy_noerror"
"func_noerror_foreign_key_attributes" "func_noerror_foreign_key_attributes"
"func_noerror_foreign_key_key_cls_unbound" "func_noerror_foreign_key_key_cls_unbound"
"test_everything"
]; ];
pythonImportsCheck = [ pythonImportsCheck = [

Loading…
Cancel
Save