13 buildPythonPackage rec {
14 pname = "pytest-pylint";
18 disabled = pythonOlder "3.7";
21 inherit pname version;
22 hash = "sha256-iHZLjh1c+hiAkkjgzML8BQNfCMNfCwIi3c/qHDxOVT4=";
26 substituteInPlace setup.py \
27 --replace-fail "pytest-runner" ""
30 build-system = [ setuptools ];
32 buildInputs = [ pytest ];
39 nativeCheckInputs = [ pytestCheckHook ];
41 pythonImportsCheck = [ "pytest_pylint" ];
44 description = "Pytest plugin to check source code with pylint";
45 homepage = "https://github.com/carsongee/pytest-pylint";
46 license = licenses.mit;