pythonPackages.vulture: disable python2

This commit is contained in:
Jonathan Ringer 2020-08-26 00:15:03 -07:00 committed by Frederik Rietdijk
parent fcb85c4f09
commit baf247e2f9

View File

@ -1,8 +1,9 @@
{ stdenv, buildPythonPackage, fetchPypi, coverage, pytest, pytestcov }:
{ stdenv, buildPythonPackage, fetchPypi, isPy27, coverage, pytest, pytestcov }:
buildPythonPackage rec {
pname = "vulture";
version = "2.0";
disabled = isPy27;
src = fetchPypi {
inherit pname version;