pythonPackages.webcolors: disable python2, abandoned upstream

This commit is contained in:
Jonathan Ringer 2020-06-25 20:50:09 -07:00 committed by Jon
parent 56f8f6f31f
commit 990d80657d

View file

@ -1,6 +1,7 @@
{ lib
, buildPythonPackage
, fetchPypi
, isPy27
, python
, six
}:
@ -8,6 +9,7 @@
buildPythonPackage rec {
pname = "webcolors";
version = "1.11.1";
disabled = isPy27;
src = fetchPypi {
inherit pname version;