pythonPackages.pytest-pylint: disable for python2

This commit is contained in:
Jonathan Ringer 2020-04-01 17:56:43 -07:00 committed by Jon
parent 6d6dc97c60
commit f5617ff294

View file

@ -1,6 +1,7 @@
{ lib
, buildPythonPackage
, fetchPypi
, isPy27
, pytest
, pylint
, six
@ -10,6 +11,7 @@
buildPythonPackage rec {
pname = "pytest-pylint";
version = "0.15.1";
disabled = isPy27;
src = fetchPypi {
inherit pname version;