depot/third_party/nixpkgs/pkgs/development/python-modules/pytest-pylint/default.nix
Default email 7bc014aa9c Project import generated by Copybara.
GitOrigin-RevId: c97e777ff06fcb8d37dcdf5e21e9eff1f34f0e90
2022-09-11 12:47:08 -03:00

41 lines
734 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, isPy27
, pytest
, pylint
, six
, pytest-runner
, toml
}:
buildPythonPackage rec {
pname = "pytest-pylint";
version = "0.19.0";
disabled = isPy27;
src = fetchPypi {
inherit pname version;
sha256 = "sha256-2I6DwQI8ZBVIqew1Z3B87udhZjKphq8TNCbUp00GaTI=";
};
nativeBuildInputs = [ pytest-runner ];
buildInputs = [ pytest ];
propagatedBuildInputs = [
pylint
six
toml
];
# tests not included with release
doCheck = false;
meta = with lib; {
description = "pytest plugin to check source code with pylint";
homepage = "https://github.com/carsongee/pytest-pylint";
license = licenses.mit;
maintainers = [ maintainers.costrouc ];
};
}