pythonPackages.vulture: disable python2

This commit is contained in:
Jonathan Ringer
2020-08-26 12:38:57 +02:00
committed by Frederik Rietdijk
parent fcb85c4f09
commit baf247e2f9
@@ -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;