pythonPackages.pytest-pylint: disable for python2

This commit is contained in:
Jonathan Ringer
2020-04-01 17:59:07 -07:00
committed by Jon
parent 6d6dc97c60
commit f5617ff294
@@ -1,6 +1,7 @@
{ lib { lib
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, isPy27
, pytest , pytest
, pylint , pylint
, six , six
@@ -10,6 +11,7 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "pytest-pylint"; pname = "pytest-pylint";
version = "0.15.1"; version = "0.15.1";
disabled = isPy27;
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;