pythonPackages.cfgv: disable python2, abandoned

This commit is contained in:
Jonathan Ringer 2020-06-16 13:45:50 -07:00
parent fe1a38a2e2
commit 3701913775

View file

@ -1,8 +1,9 @@
{ lib, buildPythonPackage, fetchPypi, six }:
{ lib, buildPythonPackage, fetchPypi, isPy27, six }:
buildPythonPackage rec {
pname = "cfgv";
version = "3.1.0";
disabled = isPy27;
src = fetchPypi {
inherit pname version;