12 buildPythonPackage rec {
13 pname = "pylint-plugin-utils";
17 disabled = pythonOlder "3.7";
19 src = fetchFromGitHub {
21 repo = "pylint-plugin-utils";
22 rev = "refs/tags/${version}";
23 hash = "sha256-xuPU1txfB+6+zJjtlfvNA950S5n7/PWPPFn1F3RtvCc=";
26 nativeBuildInputs = [ poetry-core ];
28 propagatedBuildInputs = [
33 nativeCheckInputs = [ pytestCheckHook ];
35 pythonImportsCheck = [ "pylint_plugin_utils" ];
38 description = "Utilities and helpers for writing Pylint plugins";
39 homepage = "https://github.com/PyCQA/pylint-plugin-utils";
40 license = licenses.gpl2Only;
41 maintainers = with maintainers; [ kamadorueda ];