python311Packages.pylint-plugin-utils: refactor

This commit is contained in:
Fabian Affolter 2024-01-20 17:18:51 +01:00
parent b4ee3c3cc4
commit 814f85740e

View File

@ -4,23 +4,28 @@
, pylint
, pytestCheckHook
, pythonOlder
, setuptools
, toml
}:
buildPythonPackage rec {
pname = "pylint-plugin-utils";
version = "0.7";
format = "setuptools";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "PyCQA";
repo = pname;
rev = version;
repo = "pylint-plugin-utils";
rev = "refs/tags/${version}";
hash = "sha256-uDsSSUWdlzuQz6umoYLbIotOYNEnLQu041ZZVMRd2ww=";
};
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [
pylint
toml